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
  57 
  58 JCOV_OUTPUT_DIR := $(OUTPUTDIR)/jcov-coverage
  59 JCOV_GRABBER_LOG := $(JCOV_OUTPUT_DIR)/grabber.log
  60 JCOV_RESULT_FILE := $(JCOV_OUTPUT_DIR)/result.xml
  61 JCOV_REPORT := $(JCOV_OUTPUT_DIR)/report
  62 JCOV_MEM_OPTIONS := -Xms64m -Xmx4g
  63 
  64 jcov-do-start-grabber: jcov-stop-grabber
  65         $(MKDIR) -p $(JCOV_OUTPUT_DIR) ; \
  66         $(JAVA) -Xmx4g -jar $(JCOV_HOME)/lib/jcov.jar Grabber -v -t $(JCOV_IMAGE_DIR)/template.xml -o $(JCOV_RESULT_FILE) 1>$(JCOV_GRABBER_LOG) 2>&1 &
  67 
  68 jcov-start-grabber: jcov-do-start-grabber
  69         $(JAVA) -jar $(JCOV_HOME)/lib/jcov.jar GrabberManager -t 600 -wait
  70 
  71 jcov-stop-grabber:
  72         if $(JAVA) -jar $(JCOV_HOME)/lib/jcov.jar GrabberManager -status 1>/dev/null 2>&1 ; then \
  73           $(JAVA) -jar $(JCOV_HOME)/lib/jcov.jar GrabberManager -stop -stoptimeout 3600 ; \
  74         fi
  75 
  76 jcov-gen-report:
  77         $(JAVA) -Xmx4g -jar $(JCOV_HOME)/lib/jcov.jar RepGen -sourcepath `echo $(TOPDIR)/src/*/share/classes/ | tr ' ' ':'` -fmt html -o $(JCOV_REPORT) $(JCOV_RESULT_FILE)
  78 
  79 jcov-run-test:
  80         +($(CD) $(TOPDIR)/make && \
  81         $(MAKE) $(MAKE_ARGS) -f Coverage.gmk jcov-start-grabber && \
  82         JAVA_TOOL_OPTIONS="$(JCOV_MEM_OPTIONS)" _JAVA_OPTIONS="$(JCOV_MEM_OPTIONS)" \
  83                 $(MAKE) $(MAKE_ARGS) -f RunTests.gmk \
  84                 run-test  TEST="$(TEST)" JTREG_JOBS=1 JDK_IMAGE_DIR=$(JCOV_IMAGE_DIR) \
  85                 JTREG_OPTIONS="-e:JAVA_TOOL_OPTIONS='$(JCOV_MEM_OPTIONS)' -e:_JAVA_OPTIONS='$(JCOV_MEM_OPTIONS)'" && \
  86         $(MAKE) $(MAKE_ARGS) -f Coverage.gmk jcov-stop-grabber && \
  87         $(MAKE) $(MAKE_ARGS) -f Coverage.gmk jcov-gen-report)