2
# Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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.
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
28
################################################################################
30
JCOV_INPUT_IMAGE_DIR :=
32
ifneq ($(JCOV_INPUT_JDK), )
33
JCOV_INPUT_IMAGE_DIR := $(JCOV_INPUT_JDK)
35
JCOV_INPUT_IMAGE_DIR := $(JDK_IMAGE_DIR)
38
#moving instrumented jdk image in and out of jcov_temp because of CODETOOLS-7902299
39
JCOV_TEMP := $(SUPPORT_OUTPUTDIR)/jcov_temp
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*' \
53
$(JCOV_TEMP)/$(JCOV_IMAGE_SUBDIR)
54
$(MV) $(JCOV_TEMP)/$(JCOV_IMAGE_SUBDIR) $(JCOV_IMAGE_DIR)
57
jcov-image: $(JCOV_IMAGE_DIR)/release