1 # 2 # Copyright (c) 2016, 2023, 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 26 default: all 27 28 include $(SPEC) 29 include MakeBase.gmk 30 include FindTests.gmk 31 32 # We will always run multiple tests serially 33 .NOTPARALLEL: 34 35 ################################################################################ 36 # Parse global control variables 37 ################################################################################ 38 39 ifneq ($(TEST_VM_OPTS), ) 40 ifneq ($(TEST_OPTS), ) 41 TEST_OPTS := $(TEST_OPTS);VM_OPTIONS=$(TEST_VM_OPTS) 42 else 43 TEST_OPTS := VM_OPTIONS=$(TEST_VM_OPTS) 44 endif 45 endif 46 47 $(eval $(call ParseKeywordVariable, TEST_OPTS, \ 48 SINGLE_KEYWORDS := JOBS TIMEOUT_FACTOR JCOV JCOV_DIFF_CHANGESET, \ 49 STRING_KEYWORDS := VM_OPTIONS JAVA_OPTIONS, \ 50 )) 51 52 # Helper function to propagate TEST_OPTS values. 53 # 54 # Note: No spaces are allowed around the arguments. 55 # Arg $1 The variable in TEST_OPTS to propagate 56 # Arg $2 The control variable to propagate it to 57 define SetTestOpt 58 ifneq ($$(TEST_OPTS_$1), ) 59 $2_$1 := $$(TEST_OPTS_$1) 60 endif 61 endef 62 63 # Setup _NT_SYMBOL_PATH on Windows, which points to our pdb files. 64 ifeq ($(call isTargetOs, windows), true) 65 ifndef _NT_SYMBOL_PATH 66 SYMBOL_PATH := $(call PathList, $(sort $(patsubst %/, %, $(dir $(wildcard \ 67 $(addprefix $(SYMBOLS_IMAGE_DIR)/bin/, *.pdb */*.pdb)))))) 68 export _NT_SYMBOL_PATH := $(subst \\,\, $(call FixPath, \ 69 $(subst $(DQUOTE),, $(SYMBOL_PATH)))) 70 $(call LogDebug, Setting _NT_SYMBOL_PATH to $(_NT_SYMBOL_PATH)) 71 endif 72 endif 73 74 ################################################################################ 75 # Hook to include the corresponding custom file, if present. 76 $(eval $(call IncludeCustomExtension, RunTests.gmk)) 77 ################################################################################ 78 79 # This is the JDK that we will test 80 JDK_UNDER_TEST := $(JDK_IMAGE_DIR) 81 82 TEST_RESULTS_DIR := $(OUTPUTDIR)/test-results 83 TEST_SUPPORT_DIR := $(OUTPUTDIR)/test-support 84 TEST_SUMMARY := $(TEST_RESULTS_DIR)/test-summary.txt 85 TEST_LAST_IDS := $(TEST_SUPPORT_DIR)/test-last-ids.txt 86 87 ifeq ($(CUSTOM_ROOT), ) 88 JTREG_TOPDIR := $(TOPDIR) 89 else 90 JTREG_TOPDIR := $(CUSTOM_ROOT) 91 endif 92 93 JTREG_FAILURE_HANDLER_DIR := $(TEST_IMAGE_DIR)/failure_handler 94 JTREG_FAILURE_HANDLER := $(JTREG_FAILURE_HANDLER_DIR)/jtregFailureHandler.jar 95 96 JTREG_FAILURE_HANDLER_TIMEOUT ?= 0 97 98 ifneq ($(wildcard $(JTREG_FAILURE_HANDLER)), ) 99 JTREG_FAILURE_HANDLER_OPTIONS := \ 100 -timeoutHandlerDir:$(JTREG_FAILURE_HANDLER) \ 101 -observerDir:$(JTREG_FAILURE_HANDLER) \ 102 -timeoutHandler:jdk.test.failurehandler.jtreg.GatherProcessInfoTimeoutHandler \ 103 -observer:jdk.test.failurehandler.jtreg.GatherDiagnosticInfoObserver \ 104 -timeoutHandlerTimeout:$(JTREG_FAILURE_HANDLER_TIMEOUT) 105 endif 106 107 GTEST_LAUNCHER_DIRS := $(patsubst %/gtestLauncher, %, \ 108 $(wildcard $(TEST_IMAGE_DIR)/hotspot/gtest/*/gtestLauncher)) 109 GTEST_VARIANTS := $(strip $(patsubst $(TEST_IMAGE_DIR)/hotspot/gtest/%, %, \ 110 $(GTEST_LAUNCHER_DIRS))) 111 112 COV_ENVIRONMENT := 113 JTREG_COV_OPTIONS := 114 115 ifeq ($(TEST_OPTS_JCOV), true) 116 JCOV_OUTPUT_DIR := $(TEST_RESULTS_DIR)/jcov-output 117 JCOV_GRABBER_LOG := $(JCOV_OUTPUT_DIR)/grabber.log 118 JCOV_RESULT_FILE := $(JCOV_OUTPUT_DIR)/result.xml 119 JCOV_REPORT := $(JCOV_OUTPUT_DIR)/report 120 JCOV_MEM_OPTIONS := -Xms64m -Xmx4g 121 122 # Replace our normal test JDK with the JCov image. 123 JDK_UNDER_TEST := $(JCOV_IMAGE_DIR) 124 125 COV_ENVIRONMENT += JAVA_TOOL_OPTIONS="$(JCOV_MEM_OPTIONS)" \ 126 _JAVA_OPTIONS="$(JCOV_MEM_OPTIONS)" 127 JTREG_COV_OPTIONS += -e:JAVA_TOOL_OPTIONS='$(JCOV_MEM_OPTIONS)' \ 128 -e:_JAVA_OPTIONS='$(JCOV_MEM_OPTIONS)' 129 endif 130 131 ifeq ($(GCOV_ENABLED), true) 132 GCOV_OUTPUT_DIR := $(TEST_RESULTS_DIR)/gcov-output 133 COV_ENVIRONMENT += GCOV_PREFIX="$(GCOV_OUTPUT_DIR)" 134 JTREG_COV_OPTIONS += -e:GCOV_PREFIX="$(GCOV_OUTPUT_DIR)" 135 endif 136 137 ################################################################################ 138 # Setup global test running parameters 139 ################################################################################ 140 141 # Each factor variable comes in 3 variants. The first one is reserved for users 142 # to use on command line. The other two are for predefined configurations in JDL 143 # and for machine specific configurations respectively. 144 TEST_JOBS_FACTOR ?= 1 145 TEST_JOBS_FACTOR_JDL ?= 1 146 TEST_JOBS_FACTOR_MACHINE ?= 1 147 148 ifeq ($(TEST_JOBS), 0) 149 CORES_DIVIDER := 2 150 # For some big multi-core machines with low ulimit -u setting we hit the max 151 # threads/process limit. In such a setup the memory/cores-only-guided 152 # TEST_JOBS config is insufficient. From experience a concurrency setting of 153 # 14 works reasonably well for low ulimit values (<= 4096). Thus, use 154 # divider 4096/14. For high ulimit -u values this shouldn't make a difference. 155 ULIMIT_DIVIDER := (4096/14) 156 PROC_ULIMIT := -1 157 ifneq ($(OPENJDK_TARGET_OS), windows) 158 PROC_ULIMIT := $(shell $(ULIMIT) -u) 159 ifeq ($(PROC_ULIMIT), unlimited) 160 PROC_ULIMIT := -1 161 endif 162 endif 163 MEMORY_DIVIDER := 2048 164 TEST_JOBS := $(shell $(AWK) \ 165 'BEGIN { \ 166 c = $(NUM_CORES) / $(CORES_DIVIDER); \ 167 m = $(MEMORY_SIZE) / $(MEMORY_DIVIDER); \ 168 u = $(PROC_ULIMIT); \ 169 if (u > -1) { \ 170 u = u / $(ULIMIT_DIVIDER); \ 171 if (u < c) c = u; \ 172 } \ 173 if (c > m) c = m; \ 174 c = c * $(TEST_JOBS_FACTOR); \ 175 c = c * $(TEST_JOBS_FACTOR_JDL); \ 176 c = c * $(TEST_JOBS_FACTOR_MACHINE); \ 177 if (c < 1) c = 1; \ 178 printf "%.0f", c; \ 179 }') 180 endif 181 182 ################################################################################ 183 # Parse control variables 184 ################################################################################ 185 186 ifneq ($(TEST_OPTS), ) 187 # Inform the user 188 $(info Running tests using TEST_OPTS control variable '$(TEST_OPTS)') 189 endif 190 191 ### Jtreg 192 193 $(eval $(call SetTestOpt,VM_OPTIONS,JTREG)) 194 $(eval $(call SetTestOpt,JAVA_OPTIONS,JTREG)) 195 196 $(eval $(call SetTestOpt,JOBS,JTREG)) 197 $(eval $(call SetTestOpt,TIMEOUT_FACTOR,JTREG)) 198 $(eval $(call SetTestOpt,FAILURE_HANDLER_TIMEOUT,JTREG)) 199 $(eval $(call SetTestOpt,REPORT,JTREG)) 200 201 $(eval $(call ParseKeywordVariable, JTREG, \ 202 SINGLE_KEYWORDS := JOBS TIMEOUT_FACTOR FAILURE_HANDLER_TIMEOUT \ 203 TEST_MODE ASSERT VERBOSE RETAIN MAX_MEM RUN_PROBLEM_LISTS \ 204 RETRY_COUNT REPEAT_COUNT MAX_OUTPUT REPORT $(CUSTOM_JTREG_SINGLE_KEYWORDS), \ 205 STRING_KEYWORDS := OPTIONS JAVA_OPTIONS VM_OPTIONS KEYWORDS \ 206 EXTRA_PROBLEM_LISTS LAUNCHER_OPTIONS \ 207 $(CUSTOM_JTREG_STRING_KEYWORDS), \ 208 )) 209 210 ifneq ($(JTREG), ) 211 # Inform the user 212 $(info Running tests using JTREG control variable '$(JTREG)') 213 endif 214 215 ### Gtest 216 217 $(eval $(call SetTestOpt,VM_OPTIONS,GTEST)) 218 $(eval $(call SetTestOpt,JAVA_OPTIONS,GTEST)) 219 220 $(eval $(call ParseKeywordVariable, GTEST, \ 221 SINGLE_KEYWORDS := REPEAT, \ 222 STRING_KEYWORDS := OPTIONS VM_OPTIONS JAVA_OPTIONS, \ 223 )) 224 225 ifneq ($(GTEST), ) 226 # Inform the user 227 $(info Running tests using GTEST control variable '$(GTEST)') 228 endif 229 230 ### Microbenchmarks 231 232 $(eval $(call SetTestOpt,VM_OPTIONS,MICRO)) 233 $(eval $(call SetTestOpt,JAVA_OPTIONS,MICRO)) 234 235 $(eval $(call ParseKeywordVariable, MICRO, \ 236 SINGLE_KEYWORDS := ITER FORK TIME WARMUP_ITER WARMUP_TIME, \ 237 STRING_KEYWORDS := OPTIONS JAVA_OPTIONS VM_OPTIONS RESULTS_FORMAT TEST_JDK \ 238 BENCHMARKS_JAR, \ 239 )) 240 241 ifneq ($(MICRO), ) 242 # Inform the user 243 $(info Running tests using MICRO control variable '$(MICRO)') 244 endif 245 246 247 ################################################################################ 248 # Component-specific Jtreg settings 249 ################################################################################ 250 251 hotspot_JTREG_MAX_MEM := 0 252 hotspot_JTREG_ASSERT := false 253 hotspot_JTREG_NATIVEPATH := $(TEST_IMAGE_DIR)/hotspot/jtreg/native 254 jdk_JTREG_NATIVEPATH := $(TEST_IMAGE_DIR)/jdk/jtreg/native 255 lib-test_JTREG_NATIVEPATH := $(TEST_IMAGE_DIR)/lib-test/jtreg/native 256 257 jdk_JTREG_PROBLEM_LIST += $(TOPDIR)/test/jdk/ProblemList.txt 258 jaxp_JTREG_PROBLEM_LIST += $(TOPDIR)/test/jaxp/ProblemList.txt 259 langtools_JTREG_PROBLEM_LIST += $(TOPDIR)/test/langtools/ProblemList.txt 260 hotspot_JTREG_PROBLEM_LIST += $(TOPDIR)/test/hotspot/jtreg/ProblemList.txt 261 lib-test_JTREG_PROBLEM_LIST += $(TOPDIR)/test/lib-test/ProblemList.txt 262 263 ################################################################################ 264 # Parse test selection 265 # 266 # The user has given a test selection in the TEST variable. We must parse it 267 # and determine what that means in terms of actual calls to the test framework. 268 # 269 # The parse functions take as argument a test specification as given by the 270 # user, and returns a fully qualified test descriptor if it was a match, or 271 # nothing if not. A single test specification can result in multiple test 272 # descriptors being returned. A valid test descriptor must always be accepted 273 # and returned identically. 274 ################################################################################ 275 276 # Helper function to determine if a test specification is a Gtest test 277 # 278 # It is a Gtest test if it is either "gtest", or "gtest:" followed by an optional 279 # test filter string, and an optional "/<variant>" to select a specific JVM 280 # variant. If no variant is specified, all found variants are tested. 281 define ParseGtestTestSelection 282 $(if $(filter gtest%, $1), \ 283 $(if $(filter gtest, $1), \ 284 $(addprefix gtest:all/, $(GTEST_VARIANTS)) \ 285 , \ 286 $(if $(strip $(or $(filter gtest/%, $1) $(filter gtest:/%, $1))), \ 287 $(patsubst gtest:/%, gtest:all/%, $(patsubst gtest/%, gtest:/%, $1)) \ 288 , \ 289 $(if $(filter gtest:%, $1), \ 290 $(if $(findstring /, $1), \ 291 $1 \ 292 , \ 293 $(addprefix $1/, $(GTEST_VARIANTS)) \ 294 ) \ 295 ) \ 296 ) \ 297 ) \ 298 ) 299 endef 300 301 # Helper function to determine if a test specification is a microbenchmark test 302 # 303 # It is a microbenchmark test if it is either "micro", or "micro:" followed by 304 # an optional test filter string. 305 define ParseMicroTestSelection 306 $(if $(filter micro%, $1), \ 307 $(if $(filter micro, $1), \ 308 micro:all \ 309 , \ 310 $(if $(filter micro:, $1), \ 311 micro:all \ 312 , \ 313 $1 \ 314 ) \ 315 ) \ 316 ) 317 endef 318 319 # Helper function that removes the TOPDIR part 320 CleanupJtregPath = \ 321 $(strip $(patsubst %/, %, $(subst $(JTREG_TOPDIR)/,, $1))) 322 323 # Take a partial Jtreg root path and return a full, absolute path to that Jtreg 324 # root. Also support having "hotspot" as an alias for "hotspot/jtreg". 325 ExpandJtregRoot = \ 326 $(call CleanupJtregPath, $(wildcard \ 327 $(if $(filter /%, $1), \ 328 $(if $(wildcard $(strip $1)/TEST.ROOT), \ 329 $1 \ 330 ) \ 331 , \ 332 $(filter $(addprefix %, $1), $(JTREG_TESTROOTS) $(addsuffix /, $(JTREG_TESTROOTS))) \ 333 $(filter $(addprefix %, $(strip $1)/jtreg), $(JTREG_TESTROOTS) $(addsuffix /, $(JTREG_TESTROOTS))) \ 334 ) \ 335 )) 336 337 # Take a partial Jtreg test path and return a full, absolute path to that Jtreg 338 # test. Also support having "hotspot" as an alias for "hotspot/jtreg". 339 ExpandJtregPath = \ 340 $(if $(call ExpandJtregRoot, $1), \ 341 $(call ExpandJtregRoot, $1) \ 342 , \ 343 $(call CleanupJtregPath, $(wildcard \ 344 $(if $(filter /%, $1), \ 345 $1 \ 346 , \ 347 $(addsuffix /$(strip $1), $(JTREG_TESTROOTS) $(TEST_BASEDIRS)) \ 348 $(addsuffix $(strip $(patsubst hotspot/%, /hotspot/jtreg/%, $1)), $(JTREG_TESTROOTS) $(TEST_BASEDIRS)) \ 349 ) \ 350 )) \ 351 ) 352 353 # with test id: dir/Test.java#selection -> Test.java#selection -> .java#selection -> #selection 354 # without: dir/Test.java -> Test.java -> .java -> <<empty string>> 355 TestID = \ 356 $(subst .sh,,$(subst .html,,$(subst .java,,$(suffix $(notdir $1))))) 357 358 # The test id starting with a hash (#testid) will be stripped by all 359 # evals in ParseJtregTestSelectionInner and will be reinserted by calling 360 # TestID (if it is present). 361 ParseJtregTestSelection = \ 362 $(call IfAppend, $(call ParseJtregTestSelectionInner, $1), $(call TestID, $1)) 363 364 # Helper function to determine if a test specification is a Jtreg test 365 # 366 # It is a Jtreg test if it optionally begins with jtreg:, and then is either 367 # an unspecified group name (possibly prefixed by :), or a group in a 368 # specified test root, or a path to a test or test directory, 369 # either absolute or relative to any of the TEST_BASEDIRS or test roots. 370 define ParseJtregTestSelectionInner 371 $(eval TEST_NAME := $(strip $(patsubst jtreg:%, %, $1))) \ 372 $(if $(or $(findstring :, $(TEST_NAME)), $(findstring /, $(TEST_NAME))), , \ 373 $(eval TEST_NAME := :$(TEST_NAME)) \ 374 ) \ 375 $(if $(findstring :, $(TEST_NAME)), \ 376 $(if $(filter :%, $(TEST_NAME)), \ 377 $(eval TEST_GROUP := $(patsubst :%, %, $(TEST_NAME))) \ 378 $(eval TEST_ROOTS := $(foreach test_root, $(JTREG_TESTROOTS), \ 379 $(call CleanupJtregPath, $(test_root)))) \ 380 , \ 381 $(eval TEST_PATH := $(word 1, $(subst :, $(SPACE), $(TEST_NAME)))) \ 382 $(eval TEST_GROUP := $(word 2, $(subst :, $(SPACE), $(TEST_NAME)))) \ 383 $(eval TEST_ROOTS := $(call ExpandJtregRoot, $(TEST_PATH))) \ 384 ) \ 385 $(foreach test_root, $(TEST_ROOTS), \ 386 $(if $(filter /%, $(test_root)), \ 387 jtreg:$(test_root):$(TEST_GROUP) \ 388 , \ 389 $(if $(filter $(TEST_GROUP), $($(JTREG_TOPDIR)/$(test_root)_JTREG_TEST_GROUPS)), \ 390 jtreg:$(test_root):$(TEST_GROUP) \ 391 ) \ 392 ) \ 393 ) \ 394 , \ 395 $(eval TEST_PATHS := $(call ExpandJtregPath, $(TEST_NAME))) \ 396 $(foreach test_path, $(TEST_PATHS), \ 397 jtreg:$(test_path) \ 398 ) \ 399 ) 400 endef 401 402 # Helper function to determine if a test specification is a special test 403 # 404 # It is a special test if it is "special:" followed by a test name, 405 # if it is "make:" or "make-" followed by a make test, or any of the special 406 # test names as a single word. 407 define ParseSpecialTestSelection 408 $(if $(filter special:%, $1), \ 409 $1 \ 410 ) \ 411 $(if $(filter make%, $1), \ 412 $(if $(filter make:%, $1), \ 413 special:$(strip $1) \ 414 ) \ 415 $(if $(filter make-%, $1), \ 416 special:$(patsubst make-%,make:%, $1) \ 417 ) \ 418 $(if $(filter make, $1), \ 419 special:make:all \ 420 ) 421 ) \ 422 $(if $(filter failure-handler, $1), \ 423 special:$(strip $1) \ 424 ) 425 endef 426 427 ifeq ($(TEST), ) 428 $(info No test selection given in TEST!) 429 $(info Please use e.g. 'make test TEST=tier1' or 'make test-tier1') 430 $(info See doc/testing.[md|html] for help) 431 $(error Cannot continue) 432 endif 433 434 ParseTestSelection = \ 435 $(strip $(or \ 436 $(call ParseCustomTestSelection, $1) \ 437 $(call ParseGtestTestSelection, $1) \ 438 $(call ParseMicroTestSelection, $1) \ 439 $(call ParseJtregTestSelection, $1) \ 440 $(call ParseSpecialTestSelection, $1) \ 441 )) 442 443 # Now intelligently convert the test selection given by the user in TEST 444 # into a list of fully qualified test descriptors of the tests to run. 445 TESTS_TO_RUN := $(strip $(foreach test, $(TEST), $(call ParseTestSelection, $(test)))) 446 UNKNOWN_TEST := $(strip $(foreach test, $(TEST), $(if $(call ParseTestSelection, $(test)), , $(test)))) 447 448 ifneq ($(UNKNOWN_TEST), ) 449 $(info Unknown test selection: '$(UNKNOWN_TEST)') 450 $(info See doc/testing.[md|html] for help) 451 $(error Cannot continue) 452 endif 453 454 # Present the result of our parsing to the user 455 $(info Test selection '$(TEST)', will run:) 456 $(foreach test, $(TESTS_TO_RUN), $(info * $(test))) 457 458 459 ################################################################################ 460 # Functions for setting up rules for running the selected tests 461 # 462 # The SetupRun*Test functions all have the same interface: 463 # 464 # Parameter 1 is the name of the rule. This is the test id, based on the test 465 # descriptor, and this is also used as variable prefix, and the targets 466 # generated are listed in a variable by that name. 467 # 468 # Remaining parameters are named arguments. Currently this is only: 469 # TEST -- The properly formatted fully qualified test descriptor 470 # 471 # After the rule named by the test id has been executed, the following 472 # variables will be available: 473 # testid_TOTAL - the total number of tests run 474 # testid_PASSED - the number of successful tests 475 # testid_FAILED - the number of failed tests 476 # testid_ERROR - the number of tests was neither successful or failed 477 # 478 ################################################################################ 479 480 ### Rules for Gtest 481 482 SetupRunGtestTest = $(NamedParamsMacroTemplate) 483 define SetupRunGtestTestBody 484 $1_TEST_RESULTS_DIR := $$(TEST_RESULTS_DIR)/$1 485 $1_TEST_SUPPORT_DIR := $$(TEST_SUPPORT_DIR)/$1 486 $1_EXITCODE := $$($1_TEST_RESULTS_DIR)/exitcode.txt 487 488 $1_VARIANT := $$(lastword $$(subst /, , $$($1_TEST))) 489 ifeq ($$(filter $$($1_VARIANT), $$(GTEST_VARIANTS)), ) 490 $$(error Invalid gtest variant '$$($1_VARIANT)'. Valid variants: $$(GTEST_VARIANTS)) 491 endif 492 $1_TEST_NAME := $$(strip $$(patsubst %/$$($1_VARIANT), %, \ 493 $$(patsubst gtest:%, %, $$($1_TEST)))) 494 ifneq ($$($1_TEST_NAME), all) 495 $1_GTEST_FILTER := --gtest_filter=$$($1_TEST_NAME)* 496 endif 497 498 ifneq ($$(GTEST_REPEAT), ) 499 $1_GTEST_REPEAT :=--gtest_repeat=$$(GTEST_REPEAT) 500 endif 501 502 run-test-$1: pre-run-test 503 $$(call LogWarn) 504 $$(call LogWarn, Running test '$$($1_TEST)') 505 $$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR)) 506 $$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/gtest, ( \ 507 $$(CD) $$($1_TEST_SUPPORT_DIR) && \ 508 $$(FIXPATH) $$(TEST_IMAGE_DIR)/hotspot/gtest/$$($1_VARIANT)/gtestLauncher \ 509 -jdk $(JDK_UNDER_TEST) $$($1_GTEST_FILTER) \ 510 --gtest_output=xml:$$($1_TEST_RESULTS_DIR)/gtest.xml \ 511 --gtest_catch_exceptions=0 \ 512 $$($1_GTEST_REPEAT) $$(GTEST_OPTIONS) $$(GTEST_VM_OPTIONS) \ 513 $$(GTEST_JAVA_OPTIONS) \ 514 > >($(TEE) $$($1_TEST_RESULTS_DIR)/gtest.txt) \ 515 && $$(ECHO) $$$$? > $$($1_EXITCODE) \ 516 || $$(ECHO) $$$$? > $$($1_EXITCODE) \ 517 )) 518 519 $1_RESULT_FILE := $$($1_TEST_RESULTS_DIR)/gtest.txt 520 521 parse-test-$1: run-test-$1 522 $$(call LogWarn, Finished running test '$$($1_TEST)') 523 $$(call LogWarn, Test report is stored in $$(strip \ 524 $$(subst $$(TOPDIR)/, , $$($1_TEST_RESULTS_DIR)))) 525 $$(if $$(wildcard $$($1_RESULT_FILE)), \ 526 $$(eval $1_TOTAL := $$(shell $$(AWK) '/==========.* tests? from .* \ 527 test (cases?|suites?) ran/ { print $$$$2 }' $$($1_RESULT_FILE))) \ 528 $$(if $$($1_TOTAL), , $$(eval $1_TOTAL := 0)) \ 529 $$(eval $1_PASSED := $$(shell $$(AWK) '/\[ PASSED \] .* tests?./ \ 530 { print $$$$4 }' $$($1_RESULT_FILE))) \ 531 $$(if $$($1_PASSED), , $$(eval $1_PASSED := 0)) \ 532 $$(eval $1_FAILED := $$(shell $$(AWK) '/\[ FAILED \] .* tests?, \ 533 listed below/ { print $$$$4 }' $$($1_RESULT_FILE))) \ 534 $$(if $$($1_FAILED), , $$(eval $1_FAILED := 0)) \ 535 $$(eval $1_ERROR := $$(shell \ 536 $$(EXPR) $$($1_TOTAL) - $$($1_PASSED) - $$($1_FAILED))) \ 537 , \ 538 $$(eval $1_PASSED := 0) \ 539 $$(eval $1_FAILED := 0) \ 540 $$(eval $1_ERROR := 1) \ 541 $$(eval $1_TOTAL := 1) \ 542 ) 543 544 $1: run-test-$1 parse-test-$1 545 546 TARGETS += $1 run-test-$1 parse-test-$1 547 TEST_TARGETS += parse-test-$1 548 549 endef 550 551 ################################################################################ 552 553 ### Rules for Microbenchmarks 554 555 # Helper function for SetupRunMicroTest. Set a MICRO_* variable from, in order: 556 # 1) Specified by user on command line 557 # 2) Generic default 558 # 559 # Note: No spaces are allowed around the arguments. 560 # Arg $1 The test ID (i.e. $1 in SetupRunMicroTest) 561 # Arg $2 Base variable, e.g. MICRO_TEST_JDK 562 # Arg $3 The default value (optional) 563 define SetMicroValue 564 ifneq ($$($2), ) 565 $1_$2 := $$($2) 566 else 567 ifneq ($3, ) 568 $1_$2 := $3 569 endif 570 endif 571 endef 572 573 SetupRunMicroTest = $(NamedParamsMacroTemplate) 574 define SetupRunMicroTestBody 575 $1_TEST_RESULTS_DIR := $$(TEST_RESULTS_DIR)/$1 576 $1_TEST_SUPPORT_DIR := $$(TEST_SUPPORT_DIR)/$1 577 $1_EXITCODE := $$($1_TEST_RESULTS_DIR)/exitcode.txt 578 579 $1_TEST_NAME := $$(strip $$(patsubst micro:%, %, $$($1_TEST))) 580 581 $$(eval $$(call SetMicroValue,$1,MICRO_BENCHMARKS_JAR,$$(TEST_IMAGE_DIR)/micro/benchmarks.jar)) 582 $$(eval $$(call SetMicroValue,$1,MICRO_TEST_JDK,$$(JDK_UNDER_TEST))) 583 $$(eval $$(call SetMicroValue,$1,MICRO_JAVA_OPTIONS)) 584 585 # Current tests needs to open java.io 586 $1_MICRO_JAVA_OPTIONS += --add-opens=java.base/java.io=ALL-UNNAMED 587 588 # Save output as JSON or CSV file 589 ifneq ($$(MICRO_RESULTS_FORMAT), ) 590 $1_MICRO_BASIC_OPTIONS += -rf $$(MICRO_RESULTS_FORMAT) 591 $1_MICRO_BASIC_OPTIONS += -rff $$($1_TEST_RESULTS_DIR)/jmh-result.$(MICRO_RESULTS_FORMAT) 592 endif 593 594 # Set library path for native dependencies 595 $1_JMH_JVM_ARGS := -Djava.library.path=$$(TEST_IMAGE_DIR)/micro/native 596 597 ifneq ($$(MICRO_VM_OPTIONS)$$(MICRO_JAVA_OPTIONS), ) 598 $1_JMH_JVM_ARGS += $$(MICRO_VM_OPTIONS) $$(MICRO_JAVA_OPTIONS) 599 endif 600 601 $1_MICRO_VM_OPTIONS := -jvmArgs $(call ShellQuote,$$($1_JMH_JVM_ARGS)) 602 603 ifneq ($$(MICRO_ITER), ) 604 $1_MICRO_ITER := -i $$(MICRO_ITER) 605 endif 606 ifneq ($$(MICRO_FORK), ) 607 $1_MICRO_FORK := -f $$(MICRO_FORK) 608 endif 609 ifneq ($$(MICRO_TIME), ) 610 $1_MICRO_TIME := -r $$(MICRO_TIME) 611 endif 612 ifneq ($$(MICRO_WARMUP_ITER), ) 613 $1_MICRO_WARMUP_ITER := -wi $$(MICRO_WARMUP_ITER) 614 endif 615 ifneq ($$(MICRO_WARMUP_TIME), ) 616 $1_MICRO_WARMUP_TIME := -w $$(MICRO_WARMUP_TIME) 617 endif 618 619 run-test-$1: pre-run-test 620 $$(call LogWarn) 621 $$(call LogWarn, Running test '$$($1_TEST)') 622 $$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR)) 623 $$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/micro, ( \ 624 $$(FIXPATH) $$($1_MICRO_TEST_JDK)/bin/java $$($1_MICRO_JAVA_OPTIONS) \ 625 -jar $$($1_MICRO_BENCHMARKS_JAR) \ 626 $$($1_MICRO_ITER) $$($1_MICRO_FORK) $$($1_MICRO_TIME) \ 627 $$($1_MICRO_WARMUP_ITER) $$($1_MICRO_WARMUP_TIME) \ 628 $$($1_MICRO_VM_OPTIONS) $$($1_MICRO_BASIC_OPTIONS) $$(MICRO_OPTIONS) \ 629 $$($1_TEST_NAME) \ 630 > >($(TEE) $$($1_TEST_RESULTS_DIR)/micro.txt) \ 631 && $$(ECHO) $$$$? > $$($1_EXITCODE) \ 632 || $$(ECHO) $$$$? > $$($1_EXITCODE) \ 633 )) 634 635 $1_RESULT_FILE := $$($1_TEST_RESULTS_DIR)/micro.txt 636 637 parse-test-$1: run-test-$1 638 $$(call LogWarn, Finished running test '$$($1_TEST)') 639 $$(call LogWarn, Test report is stored in $$(strip \ 640 $$(subst $$(TOPDIR)/, , $$($1_TEST_RESULTS_DIR)))) 641 $$(if $$(wildcard $$($1_EXITCODE)), \ 642 $$(eval $1_EXIT_CODE := $$(shell $$(CAT) $$($1_EXITCODE))) \ 643 $$(if $$(filter 0, $$($1_EXIT_CODE)), \ 644 $$(eval $1_PASSED := 1) \ 645 $$(eval $1_ERROR := 0) \ 646 , \ 647 $$(eval $1_PASSED := 0) \ 648 $$(eval $1_ERROR := 1) \ 649 ) \ 650 $$(eval $1_FAILED := 0) \ 651 $$(eval $1_TOTAL := $$(shell \ 652 $$(EXPR) $$($1_PASSED) + $$($1_ERROR))) \ 653 , \ 654 $$(eval $1_PASSED := 0) \ 655 $$(eval $1_FAILED := 0) \ 656 $$(eval $1_ERROR := 1) \ 657 $$(eval $1_TOTAL := 1) \ 658 ) 659 660 $1: run-test-$1 parse-test-$1 661 662 TARGETS += $1 run-test-$1 parse-test-$1 663 TEST_TARGETS += parse-test-$1 664 665 endef 666 667 ################################################################################ 668 669 ### Rules for Jtreg 670 671 # Helper function for SetupRunJtregTest. Set a JTREG_* variable from, in order: 672 # 1) Specified by user on command line 673 # 2) Component-specific default 674 # 3) Generic default 675 # 676 # Note: No spaces are allowed around the arguments. 677 # Arg $1 The test ID (i.e. $1 in SetupRunJtregTest) 678 # Arg $2 Base variable, e.g. JTREG_JOBS 679 # Arg $3 The default value (optional) 680 define SetJtregValue 681 ifneq ($$($2), ) 682 $1_$2 := $$($2) 683 else 684 ifneq ($$($$($1_COMPONENT)_$2), ) 685 $1_$2 := $$($$($1_COMPONENT)_$2) 686 else 687 ifneq ($3, ) 688 $1_$2 := $3 689 endif 690 endif 691 endif 692 endef 693 694 SetupRunJtregTest = $(NamedParamsMacroTemplate) 695 define SetupRunJtregTestBody 696 $1_TEST_RESULTS_DIR := $$(TEST_RESULTS_DIR)/$1 697 $1_TEST_SUPPORT_DIR := $$(TEST_SUPPORT_DIR)/$1 698 $1_EXITCODE := $$($1_TEST_RESULTS_DIR)/exitcode.txt 699 700 $1_TEST_NAME := $$(strip $$(patsubst jtreg:%, %, $$($1_TEST))) 701 702 $1_TEST_ROOT := \ 703 $$(strip $$(foreach root, $$(JTREG_TESTROOTS), \ 704 $$(if $$(filter $$(root)%, $$(JTREG_TOPDIR)/$$($1_TEST_NAME)), $$(root)) \ 705 )) 706 $1_COMPONENT := $$(lastword $$(subst /, $$(SPACE), $$($1_TEST_ROOT))) 707 # This will work only as long as just hotspot has the additional "jtreg" directory 708 ifeq ($$($1_COMPONENT), jtreg) 709 $1_COMPONENT := hotspot 710 endif 711 712 ifeq ($$(JT_HOME), ) 713 $$(info Error: jtreg framework is not found.) 714 $$(info Please run configure using --with-jtreg.) 715 $$(error Cannot continue) 716 endif 717 718 # Unfortunately, we need different defaults for some JTREG values, 719 # depending on what component we're running. 720 721 # Convert JTREG_foo into $1_JTREG_foo with a suitable value. 722 $$(eval $$(call SetJtregValue,$1,JTREG_TEST_MODE,agentvm)) 723 $$(eval $$(call SetJtregValue,$1,JTREG_ASSERT,true)) 724 $$(eval $$(call SetJtregValue,$1,JTREG_MAX_MEM,768m)) 725 $$(eval $$(call SetJtregValue,$1,JTREG_NATIVEPATH)) 726 $$(eval $$(call SetJtregValue,$1,JTREG_BASIC_OPTIONS)) 727 $$(eval $$(call SetJtregValue,$1,JTREG_PROBLEM_LIST)) 728 729 # Only the problem list for the current test root should be used. 730 $1_JTREG_PROBLEM_LIST := $$(filter $$($1_TEST_ROOT)%, $$($1_JTREG_PROBLEM_LIST)) 731 732 ifneq ($(TEST_JOBS), 0) 733 $$(eval $$(call SetJtregValue,$1,JTREG_JOBS,$$(TEST_JOBS))) 734 else 735 $$(eval $$(call SetJtregValue,$1,JTREG_JOBS,$$(JOBS))) 736 endif 737 738 # Make sure MaxRAMPercentage is high enough to not cause OOM or swapping since 739 # we may end up with a lot of JVM's 740 $1_JTREG_MAX_RAM_PERCENTAGE := $$(shell $(AWK) 'BEGIN { print 25 / $$($1_JTREG_JOBS); }') 741 742 JTREG_TIMEOUT_FACTOR ?= 4 743 744 JTREG_VERBOSE ?= fail,error,summary 745 JTREG_RETAIN ?= fail,error 746 JTREG_RUN_PROBLEM_LISTS ?= false 747 JTREG_RETRY_COUNT ?= 0 748 JTREG_REPEAT_COUNT ?= 0 749 JTREG_REPORT ?= files 750 751 ifneq ($$(JTREG_RETRY_COUNT), 0) 752 ifneq ($$(JTREG_REPEAT_COUNT), 0) 753 $$(info Error: Cannot use both JTREG_RETRY_COUNT and JTREG_REPEAT_COUNT together.) 754 $$(info Please choose one or the other.) 755 $$(error Cannot continue) 756 endif 757 endif 758 759 ifneq ($$(JTREG_LAUNCHER_OPTIONS), ) 760 $1_JTREG_LAUNCHER_OPTIONS += $$(JTREG_LAUNCHER_OPTIONS) 761 endif 762 763 ifneq ($$(JTREG_MAX_OUTPUT), ) 764 $1_JTREG_LAUNCHER_OPTIONS += -Djavatest.maxOutputSize=$$(JTREG_MAX_OUTPUT) 765 endif 766 767 ifneq ($$($1_JTREG_MAX_MEM), 0) 768 $1_JTREG_BASIC_OPTIONS += -vmoption:-Xmx$$($1_JTREG_MAX_MEM) 769 $1_JTREG_LAUNCHER_OPTIONS += -Xmx$$($1_JTREG_MAX_MEM) 770 endif 771 772 # Make sure the tmp dir is normalized as some tests will react badly otherwise 773 $1_TEST_TMP_DIR := $$(abspath $$($1_TEST_SUPPORT_DIR)/tmp) 774 775 # test.boot.jdk is used by some test cases that want to execute a previous 776 # version of the JDK. 777 $1_JTREG_BASIC_OPTIONS += -$$($1_JTREG_TEST_MODE) \ 778 -verbose:$$(JTREG_VERBOSE) -retain:$$(JTREG_RETAIN) \ 779 -concurrency:$$($1_JTREG_JOBS) -timeoutFactor:$$(JTREG_TIMEOUT_FACTOR) \ 780 -vmoption:-XX:MaxRAMPercentage=$$($1_JTREG_MAX_RAM_PERCENTAGE) \ 781 -vmoption:-Dtest.boot.jdk="$$(BOOT_JDK)" \ 782 -vmoption:-Djava.io.tmpdir="$$($1_TEST_TMP_DIR)" 783 784 $1_JTREG_BASIC_OPTIONS += -automatic -ignore:quiet 785 786 # Make it possible to specify the JIB_DATA_DIR for tests using the 787 # JIB Artifact resolver 788 $1_JTREG_BASIC_OPTIONS += -e:JIB_DATA_DIR 789 # If running on Windows, propagate the _NT_SYMBOL_PATH to enable 790 # symbol lookup in hserr files 791 ifeq ($$(call isTargetOs, windows), true) 792 $1_JTREG_BASIC_OPTIONS += -e:_NT_SYMBOL_PATH 793 else ifeq ($$(call isTargetOs, linux), true) 794 $1_JTREG_BASIC_OPTIONS += -e:_JVM_DWARF_PATH=$$(SYMBOLS_IMAGE_DIR) 795 endif 796 797 $1_JTREG_BASIC_OPTIONS += \ 798 $$(addprefix -javaoption:, $$(JTREG_JAVA_OPTIONS)) \ 799 $$(addprefix -vmoption:, $$(JTREG_VM_OPTIONS)) \ 800 # 801 802 ifeq ($$($1_JTREG_ASSERT), true) 803 $1_JTREG_BASIC_OPTIONS += -ea -esa 804 endif 805 806 ifneq ($$($1_JTREG_NATIVEPATH), ) 807 $1_JTREG_BASIC_OPTIONS += -nativepath:$$($1_JTREG_NATIVEPATH) 808 endif 809 810 ifeq ($$(JTREG_RUN_PROBLEM_LISTS), true) 811 JTREG_PROBLEM_LIST_PREFIX := -match: 812 else 813 JTREG_PROBLEM_LIST_PREFIX := -exclude: 814 endif 815 816 ifneq ($$($1_JTREG_PROBLEM_LIST), ) 817 $1_JTREG_BASIC_OPTIONS += $$(addprefix $$(JTREG_PROBLEM_LIST_PREFIX), $$($1_JTREG_PROBLEM_LIST)) 818 endif 819 820 ifneq ($$(JTREG_EXTRA_PROBLEM_LISTS), ) 821 # Accept both absolute paths as well as relative to the current test root. 822 $1_JTREG_BASIC_OPTIONS += $$(addprefix $$(JTREG_PROBLEM_LIST_PREFIX), $$(wildcard \ 823 $$(JTREG_EXTRA_PROBLEM_LISTS) \ 824 $$(addprefix $$($1_TEST_ROOT)/, $$(JTREG_EXTRA_PROBLEM_LISTS)) \ 825 )) 826 endif 827 828 ifneq ($$(JIB_HOME), ) 829 $1_JTREG_BASIC_OPTIONS += -e:JIB_HOME=$$(JIB_HOME) 830 endif 831 832 $1_JTREG_BASIC_OPTIONS += -e:TEST_IMAGE_DIR=$(TEST_IMAGE_DIR) 833 834 ifneq ($$(JTREG_FAILURE_HANDLER_OPTIONS), ) 835 $1_JTREG_LAUNCHER_OPTIONS += -Djava.library.path="$(JTREG_FAILURE_HANDLER_DIR)" 836 endif 837 838 ifneq ($$(JTREG_KEYWORDS), ) 839 # The keywords string may contain problematic characters and may be quoted 840 # already when it arrives here. Remove any existing quotes and replace them 841 # with one set of single quotes. 842 $1_JTREG_KEYWORDS := \ 843 $$(strip $$(subst $$(SQUOTE),,$$(subst $$(DQUOTE),,$$(JTREG_KEYWORDS)))) 844 ifneq ($$($1_JTREG_KEYWORDS), ) 845 $1_JTREG_BASIC_OPTIONS += -k:'$$($1_JTREG_KEYWORDS)' 846 endif 847 endif 848 849 $$(eval $$(call SetupRunJtregTestCustom, $1)) 850 851 clean-workdir-$1: 852 $$(RM) -r $$($1_TEST_SUPPORT_DIR) 853 854 $1_COMMAND_LINE := \ 855 $$(JAVA) $$($1_JTREG_LAUNCHER_OPTIONS) \ 856 -Dprogram=jtreg -jar $$(JT_HOME)/lib/jtreg.jar \ 857 $$($1_JTREG_BASIC_OPTIONS) \ 858 -testjdk:$$(JDK_UNDER_TEST) \ 859 -dir:$$(JTREG_TOPDIR) \ 860 -reportDir:$$($1_TEST_RESULTS_DIR) \ 861 -workDir:$$($1_TEST_SUPPORT_DIR) \ 862 -report:$${JTREG_REPORT} \ 863 $$$${JTREG_STATUS} \ 864 $$(JTREG_OPTIONS) \ 865 $$(JTREG_FAILURE_HANDLER_OPTIONS) \ 866 $$(JTREG_COV_OPTIONS) \ 867 $$($1_TEST_NAME) \ 868 && $$(ECHO) $$$$? > $$($1_EXITCODE) \ 869 || $$(ECHO) $$$$? > $$($1_EXITCODE) 870 871 872 ifneq ($$(JTREG_RETRY_COUNT), 0) 873 $1_COMMAND_LINE := \ 874 for i in {0..$$(JTREG_RETRY_COUNT)}; do \ 875 if [ "$$$$i" != 0 ]; then \ 876 $$(PRINTF) "\nRetrying Jtreg run. Attempt: $$$$i\n"; \ 877 fi; \ 878 $$($1_COMMAND_LINE); \ 879 if [ "`$$(CAT) $$($1_EXITCODE)`" = "0" ]; then \ 880 break; \ 881 fi; \ 882 export JTREG_STATUS="-status:error,fail"; \ 883 done 884 endif 885 886 ifneq ($$(JTREG_REPEAT_COUNT), 0) 887 $1_COMMAND_LINE := \ 888 for i in {1..$$(JTREG_REPEAT_COUNT)}; do \ 889 $$(PRINTF) "\nRepeating Jtreg run: $$$$i out of $$(JTREG_REPEAT_COUNT)\n"; \ 890 $$($1_COMMAND_LINE); \ 891 if [ "`$$(CAT) $$($1_EXITCODE)`" != "0" ]; then \ 892 $$(PRINTF) "\nFailures detected, no more repeats.\n"; \ 893 break; \ 894 fi; \ 895 done 896 endif 897 898 run-test-$1: pre-run-test clean-workdir-$1 899 $$(call LogWarn) 900 $$(call LogWarn, Running test '$$($1_TEST)') 901 $$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR) \ 902 $$($1_TEST_TMP_DIR)) 903 $$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/jtreg, ( \ 904 $$(COV_ENVIRONMENT) $$($1_COMMAND_LINE) \ 905 )) 906 907 $1_RESULT_FILE := $$($1_TEST_RESULTS_DIR)/text/stats.txt 908 909 parse-test-$1: run-test-$1 910 $$(call LogWarn, Finished running test '$$($1_TEST)') 911 $$(call LogWarn, Test report is stored in $$(strip \ 912 $$(subst $$(TOPDIR)/, , $$($1_TEST_RESULTS_DIR)))) 913 $$(if $$(wildcard $$($1_RESULT_FILE)), \ 914 $$(eval $1_PASSED := $$(shell $$(AWK) '{ gsub(/[,;]/, ""); \ 915 for (i=1; i<=NF; i++) { if ($$$$i == "passed:") \ 916 print $$$$(i+1) } }' $$($1_RESULT_FILE))) \ 917 $$(if $$($1_PASSED), , $$(eval $1_PASSED := 0)) \ 918 $$(eval $1_FAILED := $$(shell $$(AWK) '{gsub(/[,;]/, ""); \ 919 for (i=1; i<=NF; i++) { if ($$$$i == "failed:") \ 920 print $$$$(i+1) } }' $$($1_RESULT_FILE))) \ 921 $$(if $$($1_FAILED), , $$(eval $1_FAILED := 0)) \ 922 $$(eval $1_ERROR := $$(shell $$(AWK) '{gsub(/[,;]/, ""); \ 923 for (i=1; i<=NF; i++) { if ($$$$i == "error:") \ 924 print $$$$(i+1) } }' $$($1_RESULT_FILE))) \ 925 $$(if $$($1_ERROR), , $$(eval $1_ERROR := 0)) \ 926 $$(eval $1_TOTAL := $$(shell \ 927 $$(EXPR) $$($1_PASSED) + $$($1_FAILED) + $$($1_ERROR))) \ 928 , \ 929 $$(eval $1_PASSED := 0) \ 930 $$(eval $1_FAILED := 0) \ 931 $$(eval $1_ERROR := 1) \ 932 $$(eval $1_TOTAL := 1) \ 933 ) 934 935 $1: run-test-$1 parse-test-$1 clean-workdir-$1 936 937 TARGETS += $1 run-test-$1 parse-test-$1 clean-workdir-$1 938 TEST_TARGETS += parse-test-$1 939 940 endef 941 942 ################################################################################ 943 944 ### Rules for special tests 945 946 SetupRunSpecialTest = $(NamedParamsMacroTemplate) 947 define SetupRunSpecialTestBody 948 $1_TEST_RESULTS_DIR := $$(TEST_RESULTS_DIR)/$1 949 $1_TEST_SUPPORT_DIR := $$(TEST_SUPPORT_DIR)/$1 950 $1_EXITCODE := $$($1_TEST_RESULTS_DIR)/exitcode.txt 951 952 $1_FULL_TEST_NAME := $$(strip $$(patsubst special:%, %, $$($1_TEST))) 953 ifneq ($$(findstring :, $$($1_FULL_TEST_NAME)), ) 954 $1_TEST_NAME := $$(firstword $$(subst :, ,$$($1_FULL_TEST_NAME))) 955 $1_TEST_ARGS := $$(strip $$(patsubst special:$$($1_TEST_NAME):%, %, $$($1_TEST))) 956 else 957 $1_TEST_NAME := $$($1_FULL_TEST_NAME) 958 $1_TEST_ARGS := 959 endif 960 961 ifeq ($$($1_TEST_NAME), failure-handler) 962 ifeq ($(BUILD_FAILURE_HANDLER), true) 963 $1_TEST_COMMAND_LINE := \ 964 ($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f \ 965 BuildFailureHandler.gmk test) 966 else 967 $$(error Cannot test failure handler if it is not built) 968 endif 969 else ifeq ($$($1_TEST_NAME), make) 970 $1_TEST_COMMAND_LINE := \ 971 ($(CD) $(TOPDIR)/test/make && $(MAKE) $(MAKE_ARGS) -f \ 972 TestMake.gmk $$($1_TEST_ARGS) TEST_SUPPORT_DIR="$$($1_TEST_SUPPORT_DIR)") 973 else 974 $$(error Invalid special test specification: $$($1_TEST_NAME)) 975 endif 976 977 run-test-$1: pre-run-test 978 $$(call LogWarn) 979 $$(call LogWarn, Running test '$$($1_TEST)') 980 $$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR)) 981 $$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/test-execution, ( \ 982 $$($1_TEST_COMMAND_LINE) \ 983 > >($(TEE) $$($1_TEST_RESULTS_DIR)/test-output.txt) \ 984 && $$(ECHO) $$$$? > $$($1_EXITCODE) \ 985 || $$(ECHO) $$$$? > $$($1_EXITCODE) \ 986 )) 987 988 $1_RESULT_FILE := $$($1_TEST_RESULTS_DIR)/gtest.txt 989 990 # We can not parse the various "special" tests. 991 parse-test-$1: run-test-$1 992 $$(call LogWarn, Finished running test '$$($1_TEST)') 993 $$(call LogWarn, Test report is stored in $$(strip \ 994 $$(subst $$(TOPDIR)/, , $$($1_TEST_RESULTS_DIR)))) 995 $$(call LogWarn, Warning: Special test results are not properly parsed!) 996 $$(eval $1_PASSED := $$(shell \ 997 if [ `$(CAT) $$($1_EXITCODE)` = "0" ]; then $(ECHO) 1; else $(ECHO) 0; fi \ 998 )) 999 $$(eval $1_FAILED := $$(shell \ 1000 if [ `$(CAT) $$($1_EXITCODE)` = "0" ]; then $(ECHO) 0; else $(ECHO) 1; fi \ 1001 )) 1002 $$(eval $1_ERROR := 0) 1003 $$(eval $1_TOTAL := 1) 1004 1005 $1: run-test-$1 parse-test-$1 1006 1007 TARGETS += $1 run-test-$1 parse-test-$1 1008 TEST_TARGETS += parse-test-$1 1009 1010 endef 1011 1012 ################################################################################ 1013 # Setup and execute make rules for all selected tests 1014 ################################################################################ 1015 1016 # Helper function to determine which handler to use for the given test 1017 UseGtestTestHandler = \ 1018 $(if $(filter gtest:%, $1), true) 1019 1020 UseMicroTestHandler = \ 1021 $(if $(filter micro:%, $1), true) 1022 1023 UseJtregTestHandler = \ 1024 $(if $(filter jtreg:%, $1), true) 1025 1026 UseSpecialTestHandler = \ 1027 $(if $(filter special:%, $1), true) 1028 1029 # Now process each test to run and setup a proper make rule 1030 $(foreach test, $(TESTS_TO_RUN), \ 1031 $(eval TEST_ID := $(shell $(ECHO) $(strip $(test)) | \ 1032 $(TR) -cs '[a-z][A-Z][0-9]\n' '[_*1000]')) \ 1033 $(eval ALL_TEST_IDS += $(TEST_ID)) \ 1034 $(if $(call UseCustomTestHandler, $(test)), \ 1035 $(eval $(call SetupRunCustomTest, $(TEST_ID), \ 1036 TEST := $(test), \ 1037 )) \ 1038 ) \ 1039 $(if $(call UseGtestTestHandler, $(test)), \ 1040 $(eval $(call SetupRunGtestTest, $(TEST_ID), \ 1041 TEST := $(test), \ 1042 )) \ 1043 ) \ 1044 $(if $(call UseMicroTestHandler, $(test)), \ 1045 $(eval $(call SetupRunMicroTest, $(TEST_ID), \ 1046 TEST := $(test), \ 1047 )) \ 1048 ) \ 1049 $(if $(call UseJtregTestHandler, $(test)), \ 1050 $(eval $(call SetupRunJtregTest, $(TEST_ID), \ 1051 TEST := $(test), \ 1052 )) \ 1053 ) \ 1054 $(if $(call UseSpecialTestHandler, $(test)), \ 1055 $(eval $(call SetupRunSpecialTest, $(TEST_ID), \ 1056 TEST := $(test), \ 1057 )) \ 1058 ) \ 1059 ) 1060 1061 # Sort also removes duplicates, so if there is any we'll get fewer words. 1062 ifneq ($(words $(ALL_TEST_IDS)), $(words $(sort $(ALL_TEST_IDS)))) 1063 $(error Duplicate test specification) 1064 endif 1065 1066 1067 ################################################################################ 1068 # The main target for RunTests.gmk 1069 ################################################################################ 1070 1071 # 1072 # Provide hooks for adding functionality before and after all tests are run. 1073 # 1074 1075 $(call LogInfo, RunTest setup starting) 1076 1077 # This target depends on all actual test having been run (TEST_TARGETS has beeen 1078 # populated by the SetupRun*Test functions). If you need to provide a teardown 1079 # hook, you must let it depend on this target. 1080 run-all-tests: $(TEST_TARGETS) 1081 $(call LogInfo, RunTest teardown starting) 1082 1083 # This is an abstract target that will be run before any actual tests. Add your 1084 # target as a dependency to thisif you need "setup" type functionality executed 1085 # before all tests. 1086 pre-run-test: 1087 $(call LogInfo, RunTest setup done) 1088 1089 # This is an abstract target that will be run after all actual tests, but before 1090 # the test summary. If you need "teardown" type functionality, add your target 1091 # as a dependency on this, and let the teardown target depend on run-all-tests. 1092 post-run-test: run-all-tests 1093 $(call LogInfo, RunTest teardown done) 1094 1095 # 1096 # Create and print a table of the result of all tests run 1097 # 1098 TEST_FAILURE := false 1099 1100 run-test-report: post-run-test 1101 $(RM) $(TEST_SUMMARY).old 2> /dev/null 1102 $(MV) $(TEST_SUMMARY) $(TEST_SUMMARY).old 2> /dev/null || true 1103 $(RM) $(TEST_LAST_IDS).old 2> /dev/null 1104 $(MV) $(TEST_LAST_IDS) $(TEST_LAST_IDS).old 2> /dev/null || true 1105 $(ECHO) >> $(TEST_SUMMARY) ============================== 1106 $(ECHO) >> $(TEST_SUMMARY) Test summary 1107 $(ECHO) >> $(TEST_SUMMARY) ============================== 1108 $(PRINTF) >> $(TEST_SUMMARY) "%2s %-49s %5s %5s %5s %5s %2s\n" " " \ 1109 TEST TOTAL PASS FAIL ERROR " " 1110 $(foreach test, $(TESTS_TO_RUN), \ 1111 $(eval TEST_ID := $(shell $(ECHO) $(strip $(test)) | \ 1112 $(TR) -cs '[a-z][A-Z][0-9]\n' '[_*1000]')) \ 1113 $(ECHO) >> $(TEST_LAST_IDS) $(TEST_ID) $(NEWLINE) \ 1114 $(eval NAME_PATTERN := $(shell $(ECHO) $(test) | $(TR) -c '\n' '[_*1000]')) \ 1115 $(if $(filter __________________________________________________%, $(NAME_PATTERN)), \ 1116 $(eval TEST_NAME := ) \ 1117 $(PRINTF) >> $(TEST_SUMMARY) "%2s %-49s\n" " " "$(test)" $(NEWLINE) \ 1118 , \ 1119 $(eval TEST_NAME := $(test)) \ 1120 ) \ 1121 $(if $(filter $($(TEST_ID)_PASSED), $($(TEST_ID)_TOTAL)), \ 1122 $(PRINTF) >> $(TEST_SUMMARY) "%2s %-49s %5d %5d %5d %5d %2s\n" \ 1123 " " "$(TEST_NAME)" $($(TEST_ID)_TOTAL) $($(TEST_ID)_PASSED) \ 1124 $($(TEST_ID)_FAILED) $($(TEST_ID)_ERROR) " " $(NEWLINE) \ 1125 , \ 1126 $(PRINTF) >> $(TEST_SUMMARY) "%2s %-49s %5d %5d %5d %5d %2s\n" \ 1127 ">>" "$(TEST_NAME)" $($(TEST_ID)_TOTAL) $($(TEST_ID)_PASSED) \ 1128 $($(TEST_ID)_FAILED) $($(TEST_ID)_ERROR) "<<" $(NEWLINE) \ 1129 $(eval TEST_FAILURE := true) \ 1130 ) \ 1131 ) 1132 $(ECHO) >> $(TEST_SUMMARY) ============================== 1133 $(if $(filter true, $(TEST_FAILURE)), \ 1134 $(ECHO) >> $(TEST_SUMMARY) TEST FAILURE $(NEWLINE) \ 1135 $(MKDIR) -p $(MAKESUPPORT_OUTPUTDIR) $(NEWLINE) \ 1136 $(TOUCH) $(MAKESUPPORT_OUTPUTDIR)/exit-with-error \ 1137 , \ 1138 $(ECHO) >> $(TEST_SUMMARY) TEST SUCCESS \ 1139 ) 1140 $(ECHO) 1141 $(CAT) $(TEST_SUMMARY) 1142 $(ECHO) 1143 1144 # The main run-test target 1145 run-test: run-test-report 1146 1147 TARGETS += run-all-tests pre-run-test post-run-test run-test-report run-test 1148 1149 ################################################################################ 1150 # Setup JCov 1151 ################################################################################ 1152 1153 ifeq ($(TEST_OPTS_JCOV), true) 1154 1155 jcov-do-start-grabber: 1156 $(call MakeDir, $(JCOV_OUTPUT_DIR)) 1157 if $(JAVA) -jar $(JCOV_HOME)/lib/jcov.jar GrabberManager -status 1>/dev/null 2>&1 ; then \ 1158 $(JAVA) -jar $(JCOV_HOME)/lib/jcov.jar GrabberManager -stop -stoptimeout 3600 ; \ 1159 fi 1160 $(JAVA) -Xmx4g -jar $(JCOV_HOME)/lib/jcov.jar Grabber -v -t \ 1161 $(JCOV_IMAGE_DIR)/template.xml -o $(JCOV_RESULT_FILE) \ 1162 1>$(JCOV_GRABBER_LOG) 2>&1 & 1163 1164 jcov-start-grabber: jcov-do-start-grabber 1165 $(call LogWarn, Starting JCov Grabber...) 1166 $(JAVA) -jar $(JCOV_HOME)/lib/jcov.jar GrabberManager -t 600 -wait 1167 1168 jcov-stop-grabber: 1169 $(call LogWarn, Stopping JCov Grabber...) 1170 $(JAVA) -jar $(JCOV_HOME)/lib/jcov.jar GrabberManager -stop -stoptimeout 3600 1171 1172 JCOV_REPORT_TITLE := JDK code coverage report<br/> 1173 ifneq ($(JCOV_FILTERS), ) 1174 JCOV_REPORT_TITLE += Code filters: $(JCOV_FILTERS)<br> 1175 endif 1176 JCOV_REPORT_TITLE += Tests: $(TEST) 1177 1178 jcov-gen-report: jcov-stop-grabber 1179 $(call LogWarn, Generating JCov report ...) 1180 $(JAVA) -Xmx4g -jar $(JCOV_HOME)/lib/jcov.jar RepGen -sourcepath \ 1181 `$(ECHO) $(TOPDIR)/src/*/share/classes/ | $(TR) ' ' ':'` -fmt html \ 1182 $(JCOV_FILTERS) \ 1183 -mainReportTitle "$(JCOV_REPORT_TITLE)" \ 1184 -o $(JCOV_REPORT) $(JCOV_RESULT_FILE) 1185 1186 TARGETS += jcov-do-start-grabber jcov-start-grabber jcov-stop-grabber \ 1187 jcov-gen-report 1188 1189 ifneq ($(TEST_OPTS_JCOV_DIFF_CHANGESET), ) 1190 1191 JCOV_SOURCE_DIFF := $(JCOV_OUTPUT_DIR)/source_diff 1192 JCOV_DIFF_COVERAGE_REPORT := $(JCOV_OUTPUT_DIR)/diff_coverage_report 1193 1194 ifneq ($(and $(GIT), $(wildcard $(TOPDIR)/.git)), ) 1195 DIFF_COMMAND := $(GIT) -C $(TOPDIR) diff $(TEST_OPTS_JCOV_DIFF_CHANGESET) > $(JCOV_SOURCE_DIFF) 1196 else 1197 $(info Error: Must be a git source tree for diff coverage.) 1198 $(error No git source tree.) 1199 endif 1200 1201 jcov-gen-diffcoverage: jcov-stop-grabber 1202 $(call LogWarn, Generating diff coverage with changeset $(TEST_OPTS_JCOV_DIFF_CHANGESET) ... ) 1203 $(DIFF_COMMAND) 1204 $(JAVA) -Xmx4g -jar $(JCOV_HOME)/lib/jcov.jar \ 1205 DiffCoverage -replaceDiff "src/.*/classes/:" -all \ 1206 $(JCOV_RESULT_FILE) $(JCOV_SOURCE_DIFF) > \ 1207 $(JCOV_DIFF_COVERAGE_REPORT) 1208 1209 TARGETS += jcov-gen-diffcoverage 1210 1211 endif 1212 1213 # Hook this into the framework at appropriate places 1214 pre-run-test: jcov-start-grabber 1215 1216 post-run-test: jcov-gen-report 1217 1218 ifneq ($(TEST_OPTS_JCOV_DIFF_CHANGESET), ) 1219 1220 post-run-test: jcov-gen-diffcoverage 1221 1222 endif 1223 1224 jcov-stop-grabber: run-all-tests 1225 1226 endif 1227 1228 ################################################################################ 1229 1230 all: run-test 1231 1232 .PHONY: default all $(TARGETS)