1 #
   2 # Makefile to run jtreg and other tests
   3 #
   4 
   5 # Product builds and langtools builds
   6 #
   7 # A full product build (or "control" build) creates a complete JDK image.
   8 # To test a product build, set TESTJAVA to the path for the image.
   9 #
  10 # A langtools build just builds the langtools components of a JDK. 
  11 # To test a langtools build, set TESTJAVA to the path for a recent JDK
  12 # build, and set TESTBOOTCLASSPATH to the compiled langtools classes --
  13 # for example build/classes or dist/lib/classes.jar.
  14 
  15 # JPRT
  16 # JPRT may invoke this Makefile directly, as part of a langtools build,
  17 # or indirectly, via FOREST/test/Makefile, as part of a control build.
  18 
  19 # Get OS/ARCH specifics
  20 OSNAME = $(shell uname -s)
  21 ifeq ($(OSNAME), SunOS)
  22   SLASH_JAVA = /java
  23   PLATFORM = solaris
  24   JT_PLATFORM = solaris
  25   ARCH = $(shell uname -p)
  26   ifeq ($(ARCH), i386)
  27     ARCH=i586
  28   endif
  29 endif
  30 ifeq ($(OSNAME), Linux)
  31   SLASH_JAVA = /java
  32   PLATFORM = linux
  33   JT_PLATFORM = linux
  34   ARCH = $(shell uname -m)
  35   ifeq ($(ARCH), i386)
  36     ARCH=i586
  37   endif
  38 endif
  39 ifeq ($(OSNAME), Darwin)
  40   PLATFORM = bsd
  41   JT_PLATFORM = linux
  42   ARCH = $(shell uname -m)
  43   ifeq ($(ARCH), i386)
  44     ARCH=i586
  45   endif
  46 endif
  47 ifeq ($(OSNAME), Windows_NT)
  48   # MKS
  49   PLATFORM=windows
  50 endif
  51 ifeq ($(PLATFORM),)
  52   PLATFORM = windows
  53   CYGPATH = | cygpath -m -s -f -
  54 endif
  55 
  56 ifeq ($(PLATFORM), windows)
  57   SLASH_JAVA = J:
  58   JT_PLATFORM = win32
  59   ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),ia64)
  60     ARCH=ia64
  61   else
  62     ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),AMD64)
  63       ARCH=x64
  64     else
  65       ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),EM64T)
  66         ARCH=x64
  67       else
  68         ARCH=i586
  69       endif
  70     endif
  71   endif
  72   EXE_SUFFIX=.exe
  73 endif
  74 
  75 # Root of this test area (important to use full paths in some places)
  76 TEST_ROOT := $(shell pwd $(CYGPATH) )
  77 
  78 # Default bundle of all test results (passed or not) (JPRT only)
  79 ifdef JPRT_JOB_ID
  80   JPRT_CLEAN = clean
  81   JPRT_ARCHIVE_BUNDLE = $(TEST_ROOT)/JPRT_ARCHIVE_BUNDLE.zip
  82 endif
  83 
  84 ifeq ($(PLATFORM), windows)
  85   SLASH_JAVA = J:
  86 else
  87   SLASH_JAVA = /java
  88 endif
  89 
  90 # Default JTREG to run
  91 ifdef JPRT_JTREG_HOME
  92   JTREG_HOME = $(JPRT_JTREG_HOME)
  93 else
  94   JTREG_HOME = $(SLASH_JAVA)/re/jtreg/4.1/promoted/latest/binaries/jtreg
  95 endif
  96 JTREG = $(JTREG_HOME)/$(JT_PLATFORM)/bin/jtreg
  97 JTDIFF = $(JTREG_HOME)/$(JT_PLATFORM)/bin/jtdiff
  98 
  99 # Default JCK to run
 100 ifdef JPRT_JCK_HOME
 101   JCK_HOME = $(JPRT_JCK_HOME)
 102 else
 103   JCK_HOME = $(SLASH_JAVA)/re/jck/8/promoted/latest/binaries
 104 endif
 105 
 106 # Default JDK for JTREG and JCK
 107 #
 108 # JT_JAVA is the version of java used to run jtreg/JCK. Since it is now
 109 # standard to execute tests in sameVM mode, it should normally be set the
 110 # same as TESTJAVA (although not necessarily so.)
 111 #
 112 ifdef JPRT_JAVA_HOME
 113   JT_JAVA = $(JPRT_JAVA_HOME)
 114 else
 115   JT_JAVA = $(SLASH_JAVA)/re/jdk/1.7.0/archive/fcs/binaries/$(PLATFORM)-$(ARCH)
 116 endif
 117 
 118 # Default JDK to test
 119 ifdef JPRT_IMPORT_PRODUCT_HOME
 120   TESTJAVA = $(JPRT_IMPORT_PRODUCT_HOME)
 121 else
 122   TESTJAVA = $(SLASH_JAVA)/re/jdk/1.7.0/promoted/latest/binaries/$(PLATFORM)-$(ARCH)
 123 endif
 124 
 125 # PRODUCT_HOME is a JPRT variable pointing to a directory containing the output from 
 126 # make/Makefile
 127 # For langtools, this is a directory containing build and dist
 128 # For a control build, this is build/$(PRODUCT)-$(ARCH)/XYZ-image 
 129 #       (i.e, j2sdk-image or jdk-module-image)
 130 ifdef PRODUCT_HOME
 131   ifeq ($(shell [ -r $(PRODUCT_HOME)/dist/lib/classes.jar ]; echo $$?),0)
 132     TESTBOOTCLASSPATH = $(PRODUCT_HOME)/dist/lib/classes.jar
 133   endif
 134   ifeq ($(shell [ -r $(PRODUCT_HOME)/bin/javac$(EXE_SUFFIX) ]; echo $$?),0)
 135     TESTJAVA = $(PRODUCT_HOME)
 136   endif
 137 endif
 138 
 139 ifdef TESTBOOTCLASSPATH
 140   JTREG_OPTIONS += -Xbootclasspath/p:$(TESTBOOTCLASSPATH)
 141 ### In the following, -refvmoptions is an undocumented option
 142 ### The following does not work JCK 7 b30 2/6/2010. Awaiting b31. 
 143   JCK_OPTIONS += \
 144         -vmoptions:-Xbootclasspath/p:$(TESTBOOTCLASSPATH) \
 145         -refvmoptions:-Xbootclasspath/p:$(TESTBOOTCLASSPATH)
 146 endif
 147 
 148 # Concurrency is the number of tests that can execute at once. 
 149 # On an otherwise empty machine, suggest setting to (#cpus + 2)
 150 # If unset, the default is (#cpus)
 151 ### RFE: determine and use #cpus
 152 ifdef CONCURRENCY
 153   JTREG_OPTIONS += -agentvm -concurrency:$(CONCURRENCY)
 154 else
 155   JTREG_OPTIONS += -samevm
 156 endif
 157 
 158 ifdef JCK_CONCURRENCY
 159   JCK_OPTIONS += -concurrency:$(JCK_CONCURRENCY)
 160 endif
 161 
 162 # JCK is executed using "Multi-JVM Group Mode", which is a hybrid
 163 # of otherVM and sameVM modes. New JVMs are created and reused for
 164 # a number of tests, then eventually discarded and a new one started.
 165 # This amortizes the JVM startup time.  The "group size" defines
 166 # how many tests are run in a JVM before it is replaced.
 167 # If unset, the default is 100.
 168 JCK_GROUP_SIZE = 1000
 169 ifdef JCK_GROUP_SIZE
 170   JCK_COMPILER_OPTIONS += \
 171     -jtoptions:-Ejck.env.compiler.testCompile.groupMode.groupSize=$(JCK_GROUP_SIZE) \
 172     -jtoptions:-Ejck.env.compiler.compRefExecute.groupMode.groupSize=$(JCK_GROUP_SIZE)
 173 ### The following is not supported. Awaiting RFE 6924287
 174 ### 6924287: Jck4Jdk: Allow to configure test group size for group mode via simple command line option
 175 ###  JCK_RUNTIME_OPTIONS += \
 176 ###    -jtoptions:-Ejck.env.runtime.testCompile.groupMode.groupSize=$(JCK_GROUP_SIZE)
 177 endif
 178 
 179 # Timeouts -- by default, increase test timeouts when running on JPRT
 180 ifdef JPRT_JOB_ID
 181   ifndef JTREG_TIMEOUT_FACTOR
 182     JTREG_TIMEOUT_FACTOR = 3
 183   endif
 184 endif
 185 ifdef JTREG_TIMEOUT_FACTOR
 186   JTREG_OPTIONS += -timeoutFactor:$(JTREG_TIMEOUT_FACTOR)
 187 endif
 188 
 189 # Assertions: some tests show failures when assertions are enabled.
 190 # Since javac is typically loaded via the bootclassloader (either via TESTJAVA
 191 # or TESTBOOTCLASSPATH), you may need -esa to enable assertions in javac.
 192 JTREG_OPTIONS += $(ASSERTION_OPTIONS)
 193 JCK_OPTIONS += $(ASSERTION_OPTIONS:%=-vmoptions:%)
 194 
 195 # Include shared options
 196 JCK_COMPILER_OPTIONS += $(JCK_OPTIONS)
 197 JCK_RUNTIME_OPTIONS += $(JCK_OPTIONS)
 198 
 199 # Exit codes:
 200 # jtreg, jck:   0: OK, 1: tests failed, 2: tests error; 3+: SERIOUS
 201 FATAL_JTREG_EXIT = 3
 202 FATAL_JCK_EXIT = 3
 203 # jtdiff: 0: OK, 1: differences found; 2+: SERIOUS
 204 FATAL_JTDIFF_EXIT = 2
 205 #
 206 # Exit -- used for final "normal" exit from "make". Redefine to "true" to avoid
 207 # having make exit with non-zero return code.
 208 EXIT = exit
 209 # Function to exit shell if exit code of preceding command is greater than or equal 
 210 # to a given level. Redefine function or preceding FATAL_*_EXIT codes as needed.
 211 EXIT_IF_FATAL = status=$$?; if [ $$status -ge $(1) ]; then exit $$status ; fi
 212 
 213 # The test directories to run
 214 DEFAULT_TESTDIRS = .
 215 TESTDIRS = $(DEFAULT_TESTDIRS)
 216 
 217 # Root of all test results
 218 TEST_OUTPUT_DIR = $(TEST_ROOT)/../build/$(PLATFORM)-$(ARCH)/test/langtools
 219 ABS_TEST_OUTPUT_DIR := \
 220         $(shell mkdir -p $(TEST_ROOT)/../build/$(PLATFORM)-$(ARCH)/test/langtools; \
 221                 cd  $(TEST_ROOT)/../build/$(PLATFORM)-$(ARCH)/test/langtools; \
 222                 pwd $(CYGPATH))
 223 # Subdirectories for different test runs
 224 JTREG_OUTPUT_DIR = $(ABS_TEST_OUTPUT_DIR)/jtreg
 225 JCK_COMPILER_OUTPUT_DIR = $(ABS_TEST_OUTPUT_DIR)/jck-compiler
 226 JCK_RUNTIME_OUTPUT_DIR = $(ABS_TEST_OUTPUT_DIR)/jck-runtime-Xcompile
 227 
 228 # Default make rule -- warning, may take a while
 229 all: $(JPRT_CLEAN) jtreg-tests jck-compiler-tests jck-runtime-tests $(JPRT_ARCHIVE_BUNDLE) all-summary
 230         @echo "Testing completed successfully"
 231 
 232 jtreg apt javac javadoc javah javap jdeps: $(JPRT_CLEAN) jtreg-tests $(JPRT_ARCHIVE_BUNDLE) jtreg-summary
 233         @echo "Testing completed successfully"
 234 
 235 jck-compiler: $(JPRT_CLEAN) jck-compiler-tests $(JPRT_ARCHIVE_BUNDLE) jck-compiler-summary
 236         @echo "Testing completed successfully"
 237 
 238 jck-runtime: $(JPRT_CLEAN) jck-runtime-tests $(JPRT_ARCHIVE_BUNDLE) jck-runtime-summary
 239         @echo "Testing completed successfully"
 240 
 241 # for use with JPRT -testrule
 242 all:            JTREG_TESTDIRS = .
 243 jtreg:          JTREG_TESTDIRS = .
 244 apt:            JTREG_TESTDIRS = tools/apt
 245 javac:          JTREG_TESTDIRS = tools/javac
 246 javadoc:        JTREG_TESTDIRS = tools/javadoc com/sun/javadoc
 247 javah:          JTREG_TESTDIRS = tools/javah
 248 javap:          JTREG_TESTDIRS = tools/javap
 249 jdeps:          JTREG_TESTDIRS = tools/jdeps
 250 
 251 # Run jtreg tests
 252 #
 253 # JTREG_HOME
 254 #       Installed location of jtreg
 255 # JT_JAVA
 256 #       Version of java used to run jtreg.  Should normally be the same as TESTJAVA
 257 # TESTJAVA
 258 #       Version of java to be tested.  
 259 # JTREG_OPTIONS
 260 #       Additional options for jtreg
 261 # JTREG_TESTDIRS
 262 #       Directories of tests to be run
 263 # JTREG_OUTPUT_DIR
 264 #       Where to write the results
 265 # JTREG_REFERENCE
 266 #       (Optional) reference results (e.g. work, report or summary.txt)
 267 #
 268 jtreg_tests: jtreg-tests
 269 jtreg-tests: check-jtreg FRC
 270         @rm -f -r $(JTREG_OUTPUT_DIR)/JTwork $(JTREG_OUTPUT_DIR)/JTreport \
 271             $(JTREG_OUTPUT_DIR)/diff.html $(JTREG_OUTPUT_DIR)/status.txt
 272         @mkdir -p $(JTREG_OUTPUT_DIR)
 273         JT_JAVA=$(JT_JAVA) $(JTREG) \
 274           -J-Xmx512m \
 275           -a -ignore:quiet -v:fail,error,nopass \
 276           -r:$(JTREG_OUTPUT_DIR)/JTreport \
 277           -w:$(JTREG_OUTPUT_DIR)/JTwork \
 278           -jdk:$(TESTJAVA) \
 279           $(JAVA_ARGS:%=-vmoption:%) \
 280           $(JTREG_OPTIONS) \
 281           $(JTREG_TESTDIRS) \
 282         || ( $(call EXIT_IF_FATAL,$(FATAL_JTREG_EXIT)) ; \
 283             echo $$status > $(JTREG_OUTPUT_DIR)/status.txt \
 284         )
 285 ifdef JTREG_REFERENCE
 286         JT_JAVA=$(JT_JAVA) $(JTDIFF) -o $(JTREG_OUTPUT_DIR)/diff.html \
 287             $(JTREG_REFERENCE) $(JTREG_OUTPUT_DIR)/JTreport \
 288         || ( $(call EXIT_IF_FATAL,$(FATAL_JTDIFF_EXIT)) )
 289 endif
 290 
 291 jtreg-summary: FRC
 292         if [ -r $(JTREG_OUTPUT_DIR)/status.txt ]; then \
 293             echo ; echo "Summary of jtreg test failures" ; \
 294             cat $(JTREG_OUTPUT_DIR)/JTreport/text/summary.txt | \
 295                 grep -v 'Not run' | grep -v 'Passed' ; \
 296             echo ; \
 297             $(EXIT) `cat $(JTREG_OUTPUT_DIR)/status.txt` ; \
 298         fi
 299 
 300 # Check to make sure these directories exist
 301 check-jtreg: $(PRODUCT_HOME) $(JTREG)
 302 
 303 
 304 # Run JCK-compiler tests
 305 #
 306 # JCK_HOME
 307 #       Installed location of JCK: should include JCK-compiler, and JCK-extras
 308 #       Default is JCK 8.
 309 # JT_JAVA
 310 #       Version of java used to run JCK.  Should normally be the same as TESTJAVA
 311 #       Default is JDK 7
 312 # TESTJAVA
 313 #       Version of java to be tested.  
 314 # JCK_COMPILER_OPTIONS
 315 #       Additional options for JCK-compiler
 316 # JCK_COMPILER_TESTDIRS
 317 #       Directories of tests to be run
 318 # JCK_COMPILER_OUTPUT_DIR
 319 #       Where to write the results
 320 # JCK_COMPILER_REFERENCE
 321 #       (Optional) reference results (e.g. work, report or summary.txt)
 322 #
 323 jck-compiler-tests: check-jck FRC
 324         @rm -f -r $(JCK_COMPILER_OUTPUT_DIR)/work $(JCK_COMPILER_OUTPUT_DIR)/report \
 325             $(JCK_COMPILER_OUTPUT_DIR)/diff.html $(JCK_COMPILER_OUTPUT_DIR)/status.txt
 326         @mkdir -p $(JCK_COMPILER_OUTPUT_DIR)
 327         $(JT_JAVA)/bin/java -XX:MaxPermSize=256m -Xmx512m \
 328             -jar $(JCK_HOME)/JCK-compiler-8/lib/jtjck.jar \
 329             -v:non-pass \
 330             -r:$(JCK_COMPILER_OUTPUT_DIR)/report \
 331             -w:$(JCK_COMPILER_OUTPUT_DIR)/work \
 332             -jdk:$(TESTJAVA) \
 333             $(JCK_COMPILER_OPTIONS) \
 334             $(JCK_COMPILER_TESTDIRS) \
 335         || ( $(call EXIT_IF_FATAL,$(FATAL_JCK_EXIT)) ; \
 336             echo $$status > $(JCK_COMPILER_OUTPUT_DIR)/status.txt \
 337         )
 338 ifdef JCK_COMPILER_REFERENCE
 339         JT_JAVA=$(JT_JAVA) $(JTDIFF) -o $(JCK_COMPILER_OUTPUT_DIR)/diff.html \
 340             $(JCK_COMPILER_REFERENCE) $(JCK_COMPILER_OUTPUT_DIR)/report \
 341         || ( $(call EXIT_IF_FATAL,$(FATAL_JTDIFF_EXIT)) )
 342 endif
 343 
 344 jck-compiler-summary: FRC
 345         if [ -r $(JCK_COMPILER_OUTPUT_DIR)/status.txt ]; then \
 346             echo ; echo "Summary of JCK-compiler test failures" ; \
 347             cat $(JCK_COMPILER_OUTPUT_DIR)/report/text/summary.txt | \
 348                 grep -v 'Not run' | grep -v 'Passed' ; \
 349             echo ; \
 350             $(EXIT) `cat $(JCK_COMPILER_OUTPUT_DIR)/status.txt` ; \
 351         fi
 352 
 353 # Run JCK-runtime tests in -Xcompile mode
 354 # This is a special mode to test javac by compiling the tests in the JCK-runtime test suite
 355 # Normal JCK-runtime invocation belongs in the jdk/ repository.
 356 #
 357 # JCK_HOME
 358 #       Installed location of JCK: should include JCK-compiler, JCK-runtime and JCK-extras
 359 # JT_JAVA
 360 #       Version of java used to run JCK.  Should normally be the same as TESTJAVA
 361 # TESTJAVA
 362 #       Version of java to be tested.  
 363 # JCK_RUNTIME_OPTIONS
 364 #       Additional options for JCK-runtime
 365 # JCK_RUNTIME_TESTDIRS
 366 #       Directories of tests to be run
 367 # JCK_RUNTIME_OUTPUT_DIR
 368 #       Where to write the results
 369 # JCK_RUNTIME_REFERENCE
 370 #       (Optional) reference results (e.g. work, report or summary.txt)
 371 #
 372 jck-runtime-tests: check-jck FRC
 373         @rm -f -r $(JCK_RUNTIME_OUTPUT_DIR)/work $(JCK_RUNTIME_OUTPUT_DIR)/report \
 374             $(JCK_RUNTIME_OUTPUT_DIR)/diff.html $(JCK_RUNTIME_OUTPUT_DIR)/status.txt
 375         @mkdir -p $(JCK_RUNTIME_OUTPUT_DIR)
 376         $(JT_JAVA)/bin/java -XX:MaxPermSize=256m -Xmx512m \
 377             -jar $(JCK_HOME)/JCK-runtime-8/lib/jtjck.jar \
 378             -v:non-pass \
 379             -r:$(JCK_RUNTIME_OUTPUT_DIR)/report \
 380             -w:$(JCK_RUNTIME_OUTPUT_DIR)/work \
 381             -jdk:$(TESTJAVA) \
 382             -Xcompile \
 383             $(JCK_RUNTIME_OPTIONS) \
 384             $(JCK_RUNTIME_TESTDIRS) \
 385         || ( $(call EXIT_IF_FATAL,$(FATAL_JCK_EXIT)) ; \
 386             echo $$status > $(JCK_RUNTIME_OUTPUT_DIR)/status.txt \
 387         )
 388 ifdef JCK_RUNTIME_REFERENCE
 389         JT_JAVA=$(JT_JAVA) $(JTDIFF) -o $(JCK_RUNTIME_OUTPUT_DIR)/diff.html \
 390             $(JCK_RUNTIME_REFERENCE) $(JCK_RUNTIME_OUTPUT_DIR)/report \
 391         || ( $(call EXIT_IF_FATAL,$(FATAL_JTDIFF_EXIT)) )
 392 endif
 393 
 394 jck-runtime-summary: FRC
 395         if [ -r $(JCK_RUNTIME_OUTPUT_DIR)/status.txt ]; then \
 396             echo ; echo "Summary of JCK-runtime test failures" ; \
 397             cat $(JCK_RUNTIME_OUTPUT_DIR)/report/text/summary.txt | \
 398                 grep -v 'Not run' | grep -v 'Passed' ; \
 399             echo ; \
 400             $(EXIT) `cat $(JCK_RUNTIME_OUTPUT_DIR)/status.txt` ; \
 401         fi
 402 
 403 # Check to make sure these directories exist
 404 check-jck: $(JCK_HOME) $(PRODUCT_HOME)
 405 
 406 all-summary: FRC
 407         if [ -n "`find $(TEST_OUTPUT_DIR) -name status.txt`" ]; then
 408             echo ; echo "Summary of test failures" ; \
 409             cat `find $(TEST_OUTPUT_DIR) -name summary.txt` | \
 410                 grep -v 'Not run' | grep -v 'Passed' ; \
 411             echo ; \
 412             $(EXIT) 1
 413         fi
 414 
 415 # Bundle up the results
 416 $(JPRT_ARCHIVE_BUNDLE): FRC
 417         @rm -f $@
 418         @mkdir -p $(@D)
 419         ( cd $(TEST_OUTPUT_DIR) && zip -q -r $@ . )
 420 
 421 # Cleanup
 422 clean:
 423         rm -f $(JPRT_ARCHIVE_BUNDLE)
 424 
 425 # Used to force a target rules to run
 426 FRC:
 427 
 428 # Phony targets (e.g. these are not filenames)
 429 .PHONY: all clean \
 430         jtreg javac javadoc javah javap jdeps jtreg-tests jtreg-summary check-jtreg \
 431         jck-compiler jck-compiler-tests jck-compiler-summary \
 432         jck-runtime jck-runtime-tests jck-runtime-summary check-jck
 433 
 434 # No use of suffix rules
 435 .SUFFIXES:
 436