make/Coverage.gmk
changeset 52774 56ca125c973b
child 54516 5b1ad4cbe59e
equal deleted inserted replaced
52773:61e442695048 52774:56ca125c973b
       
     1 #
       
     2 # Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
       
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4 #
       
     5 # This code is free software; you can redistribute it and/or modify it
       
     6 # under the terms of the GNU General Public License version 2 only, as
       
     7 # published by the Free Software Foundation.  Oracle designates this
       
     8 # particular file as subject to the "Classpath" exception as provided
       
     9 # by Oracle in the LICENSE file that accompanied this code.
       
    10 #
       
    11 # This code is distributed in the hope that it will be useful, but WITHOUT
       
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14 # version 2 for more details (a copy is included in the LICENSE file that
       
    15 # accompanied this code).
       
    16 #
       
    17 # You should have received a copy of the GNU General Public License version
       
    18 # 2 along with this work; if not, write to the Free Software Foundation,
       
    19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20 #
       
    21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22 # or visit www.oracle.com if you need additional information or have any
       
    23 # questions.
       
    24 
       
    25 include $(SPEC)
       
    26 include MakeBase.gmk
       
    27 
       
    28 ################################################################################
       
    29 
       
    30 JCOV_INPUT_IMAGE_DIR :=
       
    31 
       
    32 ifneq ($(JCOV_INPUT_JDK), )
       
    33   JCOV_INPUT_IMAGE_DIR := $(JCOV_INPUT_JDK)
       
    34 else
       
    35   JCOV_INPUT_IMAGE_DIR := $(JDK_IMAGE_DIR)
       
    36 endif
       
    37 
       
    38 #moving instrumented jdk image in and out of jcov_temp because of CODETOOLS-7902299
       
    39 JCOV_TEMP := $(SUPPORT_OUTPUTDIR)/jcov_temp
       
    40 
       
    41 $(JCOV_IMAGE_DIR)/release: $(JCOV_INPUT_IMAGE_DIR)/release
       
    42 	$(call LogWarn, Creating instrumented jdk image with JCov)
       
    43 	$(call MakeDir, $(JCOV_TEMP) $(IMAGES_OUTPUTDIR))
       
    44 	$(RM) -r $(JCOV_IMAGE_DIR) $(JCOV_TEMP)/*
       
    45 	$(CP) -r $(JCOV_INPUT_IMAGE_DIR) $(JCOV_TEMP)/$(JCOV_IMAGE_SUBDIR)
       
    46 	$(JAVA) -Xmx3g -jar $(JCOV_HOME)/lib/jcov.jar JREInstr \
       
    47 	    -t $(JCOV_TEMP)/$(JCOV_IMAGE_SUBDIR)/template.xml \
       
    48 	    -rt $(JCOV_HOME)/lib/jcov_network_saver.jar \
       
    49 	    -exclude 'java.lang.Object' \
       
    50 	    -exclude 'jdk.internal.org.objectweb.**' \
       
    51 	    -exclude jdk.test.Main -exclude '**\$Proxy*' \
       
    52 	    $(JCOV_TEMP)/$(JCOV_IMAGE_SUBDIR)
       
    53 	$(MV) $(JCOV_TEMP)/$(JCOV_IMAGE_SUBDIR) $(JCOV_IMAGE_DIR)
       
    54 	$(RMDIR) $(JCOV_TEMP)
       
    55 
       
    56 jcov-image: $(JCOV_IMAGE_DIR)/release