1 #
   2 # Copyright (c) 2016, 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 
  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 AOT_MODULES, \
  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
  64 ifeq ($(OPENJDK_TARGET_OS), windows)
  65   ifndef _NT_SYMBOL_PATH
  66     # Can't use PathList here as it adds quotes around the value.
  67     _NT_SYMBOL_PATH := \
  68         $(subst $(SPACE),;,$(strip \
  69             $(foreach p, $(sort $(dir $(wildcard \
  70                 $(addprefix $(SYMBOLS_IMAGE_DIR)/bin/, *.pdb */*.pdb)))), \
  71               $(call FixPath, $p) \
  72             ) \
  73         ))
  74     export _NT_SYMBOL_PATH
  75     $(info _NT_SYMBOL_PATH=$(_NT_SYMBOL_PATH))
  76   endif
  77 endif
  78 
  79 ################################################################################
  80 # Hook to include the corresponding custom file, if present.
  81 $(eval $(call IncludeCustomExtension, RunTests.gmk))
  82 ################################################################################
  83 
  84 TEST_RESULTS_DIR := $(OUTPUTDIR)/test-results
  85 TEST_SUPPORT_DIR := $(OUTPUTDIR)/test-support
  86 TEST_SUMMARY := $(TEST_RESULTS_DIR)/test-summary.txt
  87 TEST_LAST_IDS := $(TEST_SUPPORT_DIR)/test-last-ids.txt
  88 
  89 ifeq ($(CUSTOM_ROOT), )
  90   JTREG_TOPDIR := $(TOPDIR)
  91 else
  92   JTREG_TOPDIR := $(CUSTOM_ROOT)
  93 endif
  94 
  95 JTREG_FAILURE_HANDLER_DIR := $(TEST_IMAGE_DIR)/failure_handler
  96 JTREG_FAILURE_HANDLER := $(JTREG_FAILURE_HANDLER_DIR)/jtregFailureHandler.jar
  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:0
 105 endif
 106 
 107 GTEST_LAUNCHER_DIRS := $(patsubst %/gtestLauncher, %, $(wildcard $(TEST_IMAGE_DIR)/hotspot/gtest/*/gtestLauncher))
 108 GTEST_VARIANTS := $(strip $(patsubst $(TEST_IMAGE_DIR)/hotspot/gtest/%, %, $(GTEST_LAUNCHER_DIRS)))
 109 
 110 ################################################################################
 111 # Optionally create AOT libraries for specified modules before running tests.
 112 # Note, this could not be done during JDK build time.
 113 ################################################################################
 114 
 115 # Note, this could not be done during JDK build time.
 116 
 117 # Parameter 1 is the name of the rule.
 118 #
 119 # Remaining parameters are named arguments.
 120 #   MODULE      The module to generate a library for
 121 #   BIN         Output directory in which to put the library
 122 #   VM_OPTIONS  List of JVM arguments to use when creating library
 123 #   OPTIONS_VAR Name of variable to put AOT java options in
 124 #   PREREQS_VAR Name of variable to put all AOT prerequisite rule targets in
 125 #               for test rules to depend on
 126 #
 127 SetupAotModule = $(NamedParamsMacroTemplate)
 128 define SetupAotModuleBody
 129   $1_AOT_LIB := $$($1_BIN)/$$(call SHARED_LIBRARY,$$($1_MODULE))
 130   $1_AOT_CCLIST := $$(wildcard $$(TOPDIR)/test/hotspot/jtreg/compiler/aot/scripts/$$($1_MODULE)-list.txt)
 131 
 132   ifeq ($(OPENJDK_TARGET_OS), windows)
 133     $1_LD := $$(addsuffix $$(EXE_SUFFIX), $$(filter-out $$(FIXPATH), $$(LD)))
 134   else
 135     $1_LD := $$(LD)
 136   endif
 137 
 138   $1_JAOTC_OPTS := \
 139       -J-Xmx4g --info \
 140       $$(addprefix -J, $$($1_VM_OPTIONS)) \
 141       $$(addprefix --compile-commands$(SPACE), $$($1_AOT_CCLIST)) \
 142       --linker-path $$($1_LD) \
 143       #
 144 
 145   ifneq ($$(filter -ea, $$($1_VM_OPTIONS)), )
 146     $1_JAOTC_OPTS += --compile-with-assertions
 147   endif
 148 
 149   $$($1_AOT_LIB): $$(JDK_IMAGE_DIR)/release \
 150       $$(call DependOnVariable, $1_JAOTC_OPTS) \
 151       $$(call DependOnVariable, JDK_IMAGE_DIR)
 152         $$(call LogWarn, Generating $$(patsubst $$(OUTPUTDIR)/%, %, $$@))
 153         $$(call MakeTargetDir)
 154         $$(call ExecuteWithLog, $$@, \
 155             $$(FIXPATH) $$(JDK_IMAGE_DIR)/bin/jaotc \
 156             $$($1_JAOTC_OPTS) --output $$@ --module $$($1_MODULE) \
 157         )
 158         $$(call ExecuteWithLog, $$@.check, \
 159           $$(FIXPATH) $$(JDK_IMAGE_DIR)/bin/java \
 160           $$($1_VM_OPTIONS) -XX:+PrintAOT -XX:+UseAOTStrictLoading -XX:AOTLibrary=$$@ -version \
 161           > $$@.verify-aot \
 162         )
 163 
 164   $1_AOT_OPTIONS += -XX:AOTLibrary=$$($1_AOT_LIB)
 165   $1_AOT_TARGETS += $$($1_AOT_LIB)
 166 endef
 167 
 168 # Parameter 1 is the name of the rule.
 169 #
 170 # Remaining parameters are named arguments.
 171 #   MODULES     The modules to generate a library for
 172 #   VM_OPTIONS  List of JVM arguments to use when creating libraries
 173 #
 174 # After calling this, the following variables are defined
 175 #   $1_AOT_OPTIONS List of all java options needed to use the AOT libraries
 176 #   $1_AOT_TARGETS List of all targets that the test rule will need to depend on
 177 #
 178 SetupAot = $(NamedParamsMacroTemplate)
 179 define SetupAotBody
 180   $$(info Running with AOTd libraries for $$($1_MODULES))
 181   # Put aot libraries in a separate directory so they are not deleted between
 182   # test runs and may be reused between make invocations.
 183   $$(foreach m, $$($1_MODULES), \
 184     $$(eval $$(call SetupAotModule, $1_$$m, \
 185         MODULE := $$m, \
 186         BIN := $$(TEST_SUPPORT_DIR)/aot/$1, \
 187         VM_OPTIONS := $$($1_VM_OPTIONS), \
 188     )) \
 189     $$(eval $1_AOT_OPTIONS += $$($1_$$m_AOT_OPTIONS)) \
 190     $$(eval $1_AOT_TARGETS += $$($1_$$m_AOT_TARGETS)) \
 191   )
 192 endef
 193 
 194 ################################################################################
 195 # Setup global test running parameters
 196 ################################################################################
 197 
 198 # Each factor variable comes in 3 variants. The first one is reserved for users
 199 # to use on command line. The other two are for predifined configurations in JDL
 200 # and for machine specific configurations respectively.
 201 TEST_JOBS_FACTOR ?= 1
 202 TEST_JOBS_FACTOR_JDL ?= 1
 203 TEST_JOBS_FACTOR_MACHINE ?= 1
 204 
 205 ifeq ($(TEST_JOBS), 0)
 206   # Concurrency based on min(cores / 2, 12) * TEST_JOBS_FACTOR
 207   TEST_JOBS := $(shell $(AWK) \
 208     'BEGIN { \
 209       c = $(NUM_CORES) / 2; \
 210       if (c > 12) c = 12; \
 211       c = c * $(TEST_JOBS_FACTOR); \
 212       c = c * $(TEST_JOBS_FACTOR_JDL); \
 213       c = c * $(TEST_JOBS_FACTOR_MACHINE); \
 214       if (c < 1) c = 1; \
 215       printf "%.0f", c; \
 216     }')
 217 endif
 218 
 219 ################################################################################
 220 # Parse control variables
 221 ################################################################################
 222 
 223 ifneq ($(TEST_OPTS), )
 224   # Inform the user
 225   $(info Running tests using TEST_OPTS control variable '$(TEST_OPTS)')
 226 endif
 227 
 228 $(eval $(call SetTestOpt,VM_OPTIONS,JTREG))
 229 $(eval $(call SetTestOpt,JAVA_OPTIONS,JTREG))
 230 $(eval $(call SetTestOpt,VM_OPTIONS,GTEST))
 231 $(eval $(call SetTestOpt,JAVA_OPTIONS,GTEST))
 232 
 233 $(eval $(call SetTestOpt,AOT_MODULES,JTREG))
 234 $(eval $(call SetTestOpt,AOT_MODULES,GTEST))
 235 
 236 $(eval $(call SetTestOpt,JOBS,JTREG))
 237 $(eval $(call SetTestOpt,TIMEOUT_FACTOR,JTREG))
 238 
 239 $(eval $(call ParseKeywordVariable, JTREG, \
 240     SINGLE_KEYWORDS := JOBS TIMEOUT_FACTOR TEST_MODE ASSERT VERBOSE RETAIN MAX_MEM \
 241         EXTRA_PROBLEM_LISTS KEYWORDS AOT_MODULES, \
 242     STRING_KEYWORDS := OPTIONS JAVA_OPTIONS VM_OPTIONS, \
 243 ))
 244 
 245 ifneq ($(JTREG), )
 246   # Inform the user
 247   $(info Running tests using JTREG control variable '$(JTREG)')
 248 endif
 249 
 250 $(eval $(call ParseKeywordVariable, GTEST, \
 251     SINGLE_KEYWORDS := REPEAT AOT_MODULES, \
 252     STRING_KEYWORDS := OPTIONS VM_OPTIONS JAVA_OPTIONS, \
 253 ))
 254 
 255 ifneq ($(GTEST), )
 256   # Inform the user
 257   $(info Running tests using GTEST control variable '$(GTEST)')
 258 endif
 259 
 260 
 261 ################################################################################
 262 # Component-specific Jtreg settings
 263 ################################################################################
 264 
 265 hotspot_JTREG_MAX_MEM := 0
 266 hotspot_JTREG_ASSERT := false
 267 hotspot_JTREG_NATIVEPATH := $(TEST_IMAGE_DIR)/hotspot/jtreg/native
 268 jdk_JTREG_NATIVEPATH := $(TEST_IMAGE_DIR)/jdk/jtreg/native
 269 
 270 jdk_JTREG_PROBLEM_LIST += $(TOPDIR)/test/jdk/ProblemList.txt
 271 jaxp_JTREG_PROBLEM_LIST += $(TOPDIR)/test/jaxp/ProblemList.txt
 272 langtools_JTREG_PROBLEM_LIST += $(TOPDIR)/test/langtools/ProblemList.txt
 273 nashorn_JTREG_PROBLEM_LIST += $(TOPDIR)/test/nashorn/ProblemList.txt
 274 hotspot_JTREG_PROBLEM_LIST += $(TOPDIR)/test/hotspot/jtreg/ProblemList.txt
 275 
 276 langtools_JTREG_MAX_MEM := 768m
 277 
 278 ################################################################################
 279 # Parse test selection
 280 #
 281 # The user has given a test selection in the TEST variable. We must parse it
 282 # and determine what that means in terms of actual calls to the test framework.
 283 #
 284 # The parse functions take as argument a test specification as given by the
 285 # user, and returns a fully qualified test descriptor if it was a match, or
 286 # nothing if not. A single test specification can result in multiple test
 287 # descriptors being returned. A valid test descriptor must always be accepted
 288 # and returned identically.
 289 ################################################################################
 290 
 291 # Helper function to determine if a test specification is a Gtest test
 292 #
 293 # It is a Gtest test if it is either "gtest", or "gtest:" followed by an optional
 294 # test filter string, and an optional "/<variant>" to select a specific JVM
 295 # variant. If no variant is specified, all found variants are tested.
 296 define ParseGtestTestSelection
 297   $(if $(filter gtest%, $1), \
 298     $(if $(filter gtest, $1), \
 299       $(addprefix gtest:all/, $(GTEST_VARIANTS)) \
 300     , \
 301       $(if $(strip $(or $(filter gtest/%, $1) $(filter gtest:/%, $1))), \
 302         $(patsubst gtest:/%, gtest:all/%, $(patsubst gtest/%, gtest:/%, $1)) \
 303       , \
 304         $(if $(filter gtest:%, $1), \
 305           $(if $(findstring /, $1), \
 306             $1 \
 307           , \
 308             $(addprefix $1/, $(GTEST_VARIANTS)) \
 309           ) \
 310         ) \
 311       ) \
 312     ) \
 313   )
 314 endef
 315 
 316 # Helper function that removes the TOPDIR part
 317 CleanupJtregPath = \
 318   $(strip $(patsubst %/, %, $(subst $(JTREG_TOPDIR)/,, $1)))
 319 
 320 # Take a partial Jtreg root path and return a full, absolute path to that Jtreg
 321 # root. Also support having "hotspot" as an alias for "hotspot/jtreg".
 322 ExpandJtregRoot = \
 323   $(call CleanupJtregPath, $(wildcard \
 324     $(if $(filter /%, $1), \
 325       $(if $(wildcard $(strip $1)/TEST.ROOT), \
 326         $1 \
 327       ) \
 328     , \
 329       $(filter $(addprefix %, $1), $(JTREG_TESTROOTS) $(addsuffix /, $(JTREG_TESTROOTS))) \
 330       $(filter $(addprefix %, $(strip $1)/jtreg), $(JTREG_TESTROOTS) $(addsuffix /, $(JTREG_TESTROOTS))) \
 331     ) \
 332   ))
 333 
 334 # Take a partial Jtreg test path and return a full, absolute path to that Jtreg
 335 # test. Also support having "hotspot" as an alias for "hotspot/jtreg".
 336 ExpandJtregPath = \
 337   $(if $(call ExpandJtregRoot, $1), \
 338     $(call ExpandJtregRoot, $1) \
 339   , \
 340     $(call CleanupJtregPath, $(wildcard \
 341       $(if $(filter /%, $1), \
 342         $1 \
 343       , \
 344         $(addsuffix /$(strip $1), $(JTREG_TESTROOTS) $(TEST_BASEDIRS)) \
 345         $(addsuffix $(strip $(patsubst hotspot/%, /hotspot/jtreg/%, $1)), $(JTREG_TESTROOTS) $(TEST_BASEDIRS)) \
 346       ) \
 347     )) \
 348   )
 349 
 350 # Helper function to determine if a test specification is a Jtreg test
 351 #
 352 # It is a Jtreg test if it optionally begins with jtreg:, and then is either
 353 # an unspecified group name (possibly prefixed by :), or a group in a
 354 # specified test root, or a path to a test or test directory,
 355 # either absolute or relative to any of the TEST_BASEDIRS or test roots.
 356 define ParseJtregTestSelection
 357   $(eval TEST_NAME := $(strip $(patsubst jtreg:%, %, $1))) \
 358   $(if $(or $(findstring :, $(TEST_NAME)), $(findstring /, $(TEST_NAME))), , \
 359     $(eval TEST_NAME := :$(TEST_NAME)) \
 360   ) \
 361   $(if $(findstring :, $(TEST_NAME)), \
 362     $(if $(filter :%, $(TEST_NAME)), \
 363       $(eval TEST_GROUP := $(patsubst :%, %, $(TEST_NAME))) \
 364       $(eval TEST_ROOTS := $(foreach test_root, $(JTREG_TESTROOTS), \
 365           $(call CleanupJtregPath, $(test_root)))) \
 366     , \
 367       $(eval TEST_PATH := $(word 1, $(subst :, $(SPACE), $(TEST_NAME)))) \
 368       $(eval TEST_GROUP := $(word 2, $(subst :, $(SPACE), $(TEST_NAME)))) \
 369       $(eval TEST_ROOTS := $(call ExpandJtregRoot, $(TEST_PATH))) \
 370     ) \
 371     $(foreach test_root, $(TEST_ROOTS), \
 372       $(if $(filter /%, $(test_root)), \
 373         jtreg:$(test_root):$(TEST_GROUP) \
 374       , \
 375         $(if $(filter $(TEST_GROUP), $($(JTREG_TOPDIR)/$(test_root)_JTREG_TEST_GROUPS)), \
 376           jtreg:$(test_root):$(TEST_GROUP) \
 377         ) \
 378       ) \
 379     ) \
 380   , \
 381     $(eval TEST_PATHS := $(call ExpandJtregPath, $(TEST_NAME))) \
 382     $(foreach test_path, $(TEST_PATHS), \
 383       jtreg:$(test_path) \
 384     ) \
 385   )
 386 endef
 387 
 388 # Helper function to determine if a test specification is a special test
 389 #
 390 # It is a special test if it is "special:" followed by a test name,
 391 # if it is "make:" or "make-" followed by a make test, or any of the special test names
 392 # as a single word.
 393 define ParseSpecialTestSelection
 394   $(if $(filter special:%, $1), \
 395     $1 \
 396   ) \
 397   $(if $(filter make%, $1), \
 398     $(if $(filter make:%, $1), \
 399       special:$(strip $1) \
 400     ) \
 401     $(if $(filter make-%, $1), \
 402       special:$(patsubst make-%,make:%, $1) \
 403     ) \
 404     $(if $(filter make, $1), \
 405       special:make:all \
 406     )
 407   ) \
 408   $(if $(filter failure-handler, $1), \
 409     special:$(strip $1) \
 410   )
 411 endef
 412 
 413 ifeq ($(TEST), )
 414   $(info No test selection given in TEST!)
 415   $(info Please use e.g. 'make test TEST=tier1' or 'make test-tier1')
 416   $(info See doc/testing.[md|html] for help)
 417   $(error Cannot continue)
 418 endif
 419 
 420 # Now intelligently convert the test selection given by the user in TEST
 421 # into a list of fully qualified test descriptors of the tests to run.
 422 TESTS_TO_RUN :=
 423 $(foreach test, $(TEST), \
 424   $(eval PARSED_TESTS := $(call ParseCustomTestSelection, $(test))) \
 425   $(if $(strip $(PARSED_TESTS)), , \
 426     $(eval PARSED_TESTS += $(call ParseGtestTestSelection, $(test))) \
 427   ) \
 428   $(if $(strip $(PARSED_TESTS)), , \
 429     $(eval PARSED_TESTS += $(call ParseJtregTestSelection, $(test))) \
 430   ) \
 431   $(if $(strip $(PARSED_TESTS)), , \
 432     $(eval PARSED_TESTS += $(call ParseSpecialTestSelection, $(test))) \
 433   ) \
 434   $(if $(strip $(PARSED_TESTS)), , \
 435     $(eval UNKNOWN_TEST := $(test)) \
 436   ) \
 437   $(eval TESTS_TO_RUN += $(PARSED_TESTS)) \
 438 )
 439 
 440 ifneq ($(UNKNOWN_TEST), )
 441   $(info Unknown test selection: '$(UNKNOWN_TEST)')
 442   $(info See doc/testing.[md|html] for help)
 443   $(error Cannot continue)
 444 endif
 445 
 446 TESTS_TO_RUN := $(strip $(TESTS_TO_RUN))
 447 
 448 
 449 # Present the result of our parsing to the user
 450 $(info Test selection '$(TEST)', will run:)
 451 $(foreach test, $(TESTS_TO_RUN), $(info * $(test)))
 452 
 453 
 454 ################################################################################
 455 # Functions for setting up rules for running the selected tests
 456 #
 457 # The SetupRun*Test functions all have the same interface:
 458 #
 459 # Parameter 1 is the name of the rule. This is the test id, based on the test
 460 # descriptor, and this is also used as variable prefix, and the targets
 461 # generated are listed in a variable by that name.
 462 #
 463 # Remaining parameters are named arguments. Currently this is only:
 464 #   TEST -- The properly formatted fully qualified test descriptor
 465 #
 466 # After the rule named by the test id has been executed, the following
 467 # variables will be available:
 468 # testid_TOTAL - the total number of tests run
 469 # testid_PASSED - the number of successful tests
 470 # testid_FAILED - the number of failed tests
 471 # testid_ERROR - the number of tests was neither successful or failed
 472 #
 473 ################################################################################
 474 
 475 ### Rules for Gtest
 476 
 477 SetupRunGtestTest = $(NamedParamsMacroTemplate)
 478 define SetupRunGtestTestBody
 479   $1_TEST_RESULTS_DIR := $$(TEST_RESULTS_DIR)/$1
 480   $1_TEST_SUPPORT_DIR := $$(TEST_SUPPORT_DIR)/$1
 481   $1_EXITCODE := $$($1_TEST_RESULTS_DIR)/exitcode.txt
 482 
 483   $1_VARIANT :=  $$(lastword $$(subst /, , $$($1_TEST)))
 484   ifeq ($$(filter $$($1_VARIANT), $$(GTEST_VARIANTS)), )
 485     $$(error Invalid gtest variant '$$($1_VARIANT)'. Valid variants: $$(GTEST_VARIANTS))
 486   endif
 487   $1_TEST_NAME := $$(strip $$(patsubst %/$$($1_VARIANT), %, \
 488       $$(patsubst gtest:%, %, $$($1_TEST))))
 489   ifneq ($$($1_TEST_NAME), all)
 490     $1_GTEST_FILTER := --gtest_filter=$$($1_TEST_NAME)*
 491   endif
 492 
 493   ifneq ($$(GTEST_REPEAT), )
 494     $1_GTEST_REPEAT :=--gtest_repeat=$$(GTEST_REPEAT)
 495   endif
 496 
 497   ifneq ($$(GTEST_AOT_MODULES), )
 498     $$(eval $$(call SetupAot, $1, \
 499         MODULES := $$(GTEST_AOT_MODULES), \
 500         VM_OPTIONS := $$(GTEST_VM_OPTIONS) $$(GTEST_JAVA_OPTIONS), \
 501     ))
 502   endif
 503 
 504   run-test-$1: $$($1_AOT_TARGETS)
 505         $$(call LogWarn)
 506         $$(call LogWarn, Running test '$$($1_TEST)')
 507         $$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR))
 508         $$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/gtest, \
 509             $$(FIXPATH) $$(TEST_IMAGE_DIR)/hotspot/gtest/$$($1_VARIANT)/gtestLauncher \
 510                 -jdk $(JDK_IMAGE_DIR) $$($1_GTEST_FILTER) \
 511                 --gtest_output=xml:$$($1_TEST_RESULTS_DIR)/gtest.xml \
 512                 $$($1_GTEST_REPEAT) $$(GTEST_OPTIONS) $$(GTEST_VM_OPTIONS) \
 513                 $$(GTEST_JAVA_OPTIONS) $$($1_AOT_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? 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
 547 endef
 548 
 549 ################################################################################
 550 
 551 ### Rules for Jtreg
 552 
 553 # Helper function for SetupRunJtregTest. Set a JTREG_* variable from, in order:
 554 # 1) Specified by user on command line
 555 # 2) Component-specific default
 556 # 3) Generic default
 557 #
 558 # Note: No spaces are allowed around the arguments.
 559 # Arg $1 The test ID (i.e. $1 in SetupRunJtregTest)
 560 # Arg $2 Base variable, e.g. JTREG_JOBS
 561 # Arg $3 The default value (optional)
 562 define SetJtregValue
 563   ifneq ($$($2), )
 564     $1_$2 := $$($2)
 565   else
 566     ifneq ($$($$($1_COMPONENT)_$2), )
 567       $1_$2 := $$($$($1_COMPONENT)_$2)
 568     else
 569       ifneq ($3, )
 570         $1_$2 := $3
 571       endif
 572     endif
 573   endif
 574 endef
 575 
 576 SetupRunJtregTest = $(NamedParamsMacroTemplate)
 577 define SetupRunJtregTestBody
 578   $1_TEST_RESULTS_DIR := $$(TEST_RESULTS_DIR)/$1
 579   $1_TEST_SUPPORT_DIR := $$(TEST_SUPPORT_DIR)/$1
 580   $1_EXITCODE := $$($1_TEST_RESULTS_DIR)/exitcode.txt
 581 
 582   $1_TEST_NAME := $$(strip $$(patsubst jtreg:%, %, $$($1_TEST)))
 583 
 584   $1_TEST_ROOT := \
 585       $$(strip $$(foreach root, $$(JTREG_TESTROOTS), \
 586         $$(if $$(filter $$(root)%, $$(JTREG_TOPDIR)/$$($1_TEST_NAME)), $$(root)) \
 587       ))
 588   $1_COMPONENT := $$(lastword $$(subst /, $$(SPACE), $$($1_TEST_ROOT)))
 589   # This will work only as long as just hotspot has the additional "jtreg" directory
 590   ifeq ($$($1_COMPONENT), jtreg)
 591     $1_COMPONENT := hotspot
 592   endif
 593 
 594   ifeq ($$(JT_HOME), )
 595     $$(info Error: jtreg framework is not found.)
 596     $$(info Please run configure using --with-jtreg.)
 597     $$(error Cannot continue)
 598   endif
 599 
 600   # Unfortunately, we need different defaults for some JTREG values,
 601   # depending on what component we're running.
 602 
 603   # Convert JTREG_foo into $1_JTREG_foo with a suitable value.
 604   $$(eval $$(call SetJtregValue,$1,JTREG_TEST_MODE,agentvm))
 605   $$(eval $$(call SetJtregValue,$1,JTREG_ASSERT,true))
 606   $$(eval $$(call SetJtregValue,$1,JTREG_MAX_MEM,512m))
 607   $$(eval $$(call SetJtregValue,$1,JTREG_NATIVEPATH))
 608   $$(eval $$(call SetJtregValue,$1,JTREG_BASIC_OPTIONS))
 609   $$(eval $$(call SetJtregValue,$1,JTREG_PROBLEM_LIST))
 610 
 611   # Only the problem list for the current test root should be used.
 612   $1_JTREG_PROBLEM_LIST := $$(filter $$($1_TEST_ROOT)%, $$($1_JTREG_PROBLEM_LIST))
 613 
 614   ifneq ($(TEST_JOBS), 0)
 615     $$(eval $$(call SetJtregValue,$1,JTREG_JOBS,$$(TEST_JOBS)))
 616   else
 617     $$(eval $$(call SetJtregValue,$1,JTREG_JOBS,$$(JOBS)))
 618   endif
 619 
 620   # Make sure MaxRAMPercentage is high enough to not cause OOM or swapping since
 621   # we may end up with a lot of JVM's
 622   $1_JTREG_MAX_RAM_PERCENTAGE := $$(shell $$(EXPR) 25 / $$($1_JTREG_JOBS))
 623 
 624   JTREG_TIMEOUT_FACTOR ?= 4
 625   JTREG_VERBOSE ?= fail,error,summary
 626   JTREG_RETAIN ?= fail,error
 627 
 628   ifneq ($$($1_JTREG_MAX_MEM), 0)
 629     $1_JTREG_BASIC_OPTIONS += -vmoption:-Xmx$$($1_JTREG_MAX_MEM)
 630     $1_JTREG_LAUNCHER_OPTIONS += -Xmx$$($1_JTREG_MAX_MEM)
 631   endif
 632 
 633   $1_JTREG_BASIC_OPTIONS += -$$($1_JTREG_TEST_MODE) \
 634       -verbose:$$(JTREG_VERBOSE) -retain:$$(JTREG_RETAIN) \
 635       -concurrency:$$($1_JTREG_JOBS) -timeoutFactor:$$(JTREG_TIMEOUT_FACTOR) \
 636       -vmoption:-XX:MaxRAMPercentage=$$($1_JTREG_MAX_RAM_PERCENTAGE)
 637 
 638   $1_JTREG_BASIC_OPTIONS += -automatic -ignore:quiet
 639 
 640   # Make it possible to specify the JIB_DATA_DIR for tests using the
 641   # JIB Artifact resolver
 642   $1_JTREG_BASIC_OPTIONS += -e:JIB_DATA_DIR
 643   # Some tests needs to find a boot JDK using the JDK8_HOME variable.
 644   $1_JTREG_BASIC_OPTIONS += -e:JDK8_HOME=$$(BOOT_JDK)
 645   # If running on Windows, propagate the _NT_SYMBOL_PATH to enable
 646   # symbol lookup in hserr files
 647   ifeq ($$(OPENJDK_TARGET_OS), windows)
 648     $1_JTREG_BASIC_OPTIONS += -e:_NT_SYMBOL_PATH
 649   endif
 650 
 651   $1_JTREG_BASIC_OPTIONS += \
 652       $$(addprefix -javaoption:, $$(JTREG_JAVA_OPTIONS)) \
 653       $$(addprefix -vmoption:, $$(JTREG_VM_OPTIONS)) \
 654       #
 655 
 656   ifeq ($$($1_JTREG_ASSERT), true)
 657     $1_JTREG_BASIC_OPTIONS += -ea -esa
 658   endif
 659 
 660   ifneq ($$($1_JTREG_NATIVEPATH), )
 661     $1_JTREG_BASIC_OPTIONS += -nativepath:$$($1_JTREG_NATIVEPATH)
 662   endif
 663 
 664   ifneq ($$($1_JTREG_PROBLEM_LIST), )
 665     $1_JTREG_BASIC_OPTIONS += $$(addprefix -exclude:, $$($1_JTREG_PROBLEM_LIST))
 666   endif
 667 
 668   ifneq ($$(JTREG_EXTRA_PROBLEM_LISTS), )
 669     # Accept both absolute paths as well as relative to the current test root.
 670     $1_JTREG_BASIC_OPTIONS += $$(addprefix -exclude:, $$(wildcard \
 671         $$(JTREG_EXTRA_PROBLEM_LISTS) \
 672         $$(addprefix $$($1_TEST_ROOT)/, $$(JTREG_EXTRA_PROBLEM_LISTS)) \
 673     ))
 674   endif
 675 
 676   ifneq ($$(JIB_HOME), )
 677     $1_JTREG_BASIC_OPTIONS += -e:JIB_HOME=$$(JIB_HOME)
 678   endif
 679 
 680   $1_JTREG_BASIC_OPTIONS += -e:TEST_IMAGE_GRAAL_DIR=${TEST_IMAGE_DIR}/hotspot/jtreg/graal
 681 
 682   ifneq ($$(JTREG_FAILURE_HANDLER_OPTIONS), )
 683     $1_JTREG_LAUNCHER_OPTIONS += -Djava.library.path="$(JTREG_FAILURE_HANDLER_DIR)"
 684   endif
 685 
 686   ifneq ($$(JTREG_KEYWORDS), )
 687     # The keywords string may contain problematic characters and may be quoted
 688     # already when it arrives here. Remove any existing quotes and replace them
 689     # with one set of single quotes.
 690     $1_JTREG_KEYWORDS := \
 691         $$(strip $$(subst $$(SQUOTE),,$$(subst $$(DQUOTE),,$$(JTREG_KEYWORDS))))
 692     ifneq ($$($1_JTREG_KEYWORDS), )
 693       $1_JTREG_BASIC_OPTIONS += -k:'$$($1_JTREG_KEYWORDS)'
 694     endif
 695   endif
 696 
 697   ifneq ($$(JTREG_AOT_MODULES), )
 698     $$(eval $$(call SetupAot, $1, \
 699         MODULES := $$(JTREG_AOT_MODULES), \
 700         VM_OPTIONS := $$(JTREG_VM_OPTIONS) $$(JTREG_JAVA_OPTIONS), \
 701     ))
 702   endif
 703 
 704   ifneq ($$($1_AOT_OPTIONS), )
 705     $1_JTREG_BASIC_OPTIONS += -vmoptions:"$$($1_AOT_OPTIONS)"
 706   endif
 707 
 708   clean-workdir-$1:
 709         $$(RM) -r $$($1_TEST_SUPPORT_DIR)
 710 
 711   run-test-$1: clean-workdir-$1 $$($1_AOT_TARGETS)
 712         $$(call LogWarn)
 713         $$(call LogWarn, Running test '$$($1_TEST)')
 714         $$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR))
 715         $$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/jtreg, \
 716             $$(JAVA) $$($1_JTREG_LAUNCHER_OPTIONS) \
 717                 -Dprogram=jtreg -jar $$(JT_HOME)/lib/jtreg.jar \
 718                 $$($1_JTREG_BASIC_OPTIONS) \
 719                 -testjdk:$$(JDK_IMAGE_DIR) \
 720                 -dir:$$(JTREG_TOPDIR) \
 721                 -reportDir:$$($1_TEST_RESULTS_DIR) \
 722                 -workDir:$$($1_TEST_SUPPORT_DIR) \
 723                 $$(JTREG_OPTIONS) \
 724                 $$(JTREG_FAILURE_HANDLER_OPTIONS) \
 725                 $$($1_TEST_NAME) \
 726             && $$(ECHO) $$$$? > $$($1_EXITCODE) \
 727             || $$(ECHO) $$$$? > $$($1_EXITCODE) \
 728         )
 729 
 730   $1_RESULT_FILE := $$($1_TEST_RESULTS_DIR)/text/stats.txt
 731 
 732   parse-test-$1: run-test-$1
 733         $$(call LogWarn, Finished running test '$$($1_TEST)')
 734         $$(call LogWarn, Test report is stored in $$(strip \
 735             $$(subst $$(TOPDIR)/, , $$($1_TEST_RESULTS_DIR))))
 736         $$(if $$(wildcard $$($1_RESULT_FILE)), \
 737           $$(eval $1_PASSED := $$(shell $$(AWK) '{ gsub(/[,;]/, ""); \
 738               for (i=1; i<=NF; i++) { if ($$$$i == "passed:") \
 739               print $$$$(i+1) } }' $$($1_RESULT_FILE))) \
 740           $$(if $$($1_PASSED), , $$(eval $1_PASSED := 0)) \
 741           $$(eval $1_FAILED := $$(shell $$(AWK) '{gsub(/[,;]/, ""); \
 742               for (i=1; i<=NF; i++) { if ($$$$i == "failed:") \
 743               print $$$$(i+1) } }' $$($1_RESULT_FILE))) \
 744           $$(if $$($1_FAILED), , $$(eval $1_FAILED := 0)) \
 745           $$(eval $1_ERROR := $$(shell $$(AWK) '{gsub(/[,;]/, ""); \
 746               for (i=1; i<=NF; i++) { if ($$$$i == "error:") \
 747               print $$$$(i+1) } }' $$($1_RESULT_FILE))) \
 748           $$(if $$($1_ERROR), , $$(eval $1_ERROR := 0)) \
 749           $$(eval $1_TOTAL := $$(shell \
 750               $$(EXPR) $$($1_PASSED) + $$($1_FAILED) + $$($1_ERROR))) \
 751         , \
 752           $$(eval $1_PASSED := 0) \
 753           $$(eval $1_FAILED := 0) \
 754           $$(eval $1_ERROR := 1) \
 755           $$(eval $1_TOTAL := 1) \
 756         )
 757 
 758   $1: run-test-$1 parse-test-$1
 759 
 760   TARGETS += $1
 761 endef
 762 
 763 ################################################################################
 764 
 765 ### Rules for special tests
 766 
 767 SetupRunSpecialTest = $(NamedParamsMacroTemplate)
 768 define SetupRunSpecialTestBody
 769   $1_TEST_RESULTS_DIR := $$(TEST_RESULTS_DIR)/$1
 770   $1_TEST_SUPPORT_DIR := $$(TEST_SUPPORT_DIR)/$1
 771   $1_EXITCODE := $$($1_TEST_RESULTS_DIR)/exitcode.txt
 772 
 773   $1_FULL_TEST_NAME := $$(strip $$(patsubst special:%, %, $$($1_TEST)))
 774   ifneq ($$(findstring :, $$($1_FULL_TEST_NAME)), )
 775     $1_TEST_NAME := $$(firstword $$(subst :, ,$$($1_FULL_TEST_NAME)))
 776     $1_TEST_ARGS := $$(strip $$(patsubst special:$$($1_TEST_NAME):%, %, $$($1_TEST)))
 777   else
 778     $1_TEST_NAME := $$($1_FULL_TEST_NAME)
 779     $1_TEST_ARGS :=
 780   endif
 781 
 782   ifeq ($$($1_TEST_NAME), failure-handler)
 783     ifeq ($(BUILD_FAILURE_HANDLER), true)
 784       $1_TEST_COMMAND_LINE := \
 785           ($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f \
 786           BuildFailureHandler.gmk test)
 787     else
 788       $$(error Cannot test failure handler if it is not built)
 789     endif
 790   else ifeq ($$($1_TEST_NAME), make)
 791     $1_TEST_COMMAND_LINE := \
 792         ($(CD) $(TOPDIR)/test/make && $(MAKE) $(MAKE_ARGS) -f \
 793         TestMake.gmk $$($1_TEST_ARGS))
 794   else
 795     $$(error Invalid special test specification: $$($1_TEST_NAME))
 796   endif
 797 
 798   run-test-$1: $(TEST_PREREQS)
 799         $$(call LogWarn)
 800         $$(call LogWarn, Running test '$$($1_TEST)')
 801         $$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR))
 802         $$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/test-execution, \
 803             $$($1_TEST_COMMAND_LINE) \
 804                 > >($(TEE) $$($1_TEST_RESULTS_DIR)/test-output.txt) \
 805             && $$(ECHO) $$$$? > $$($1_EXITCODE) \
 806             || $$(ECHO) $$$$? > $$($1_EXITCODE) \
 807         )
 808 
 809   $1_RESULT_FILE := $$($1_TEST_RESULTS_DIR)/gtest.txt
 810 
 811   # We can not parse the various "special" tests.
 812   parse-test-$1: run-test-$1
 813         $$(call LogWarn, Finished running test '$$($1_TEST)')
 814         $$(call LogWarn, Test report is stored in $$(strip \
 815             $$(subst $$(TOPDIR)/, , $$($1_TEST_RESULTS_DIR))))
 816         $$(call LogWarn, Warning: Special test results are not properly parsed!)
 817         $$(eval $1_PASSED := 0)
 818         $$(eval $1_FAILED := 0)
 819         $$(eval $1_ERROR := 0)
 820         $$(eval $1_TOTAL := 0)
 821 
 822   $1: run-test-$1 parse-test-$1
 823 
 824   TARGETS += $1
 825 endef
 826 
 827 ################################################################################
 828 # Setup and execute make rules for all selected tests
 829 ################################################################################
 830 
 831 # Helper function to determine which handler to use for the given test
 832 UseGtestTestHandler = \
 833   $(if $(filter gtest:%, $1), true)
 834 
 835 UseJtregTestHandler = \
 836   $(if $(filter jtreg:%, $1), true)
 837 
 838 UseSpecialTestHandler = \
 839   $(if $(filter special:%, $1), true)
 840 
 841 # Now process each test to run and setup a proper make rule
 842 $(foreach test, $(TESTS_TO_RUN), \
 843   $(eval TEST_ID := $(shell $(ECHO) $(strip $(test)) | \
 844       $(TR) -cs '[a-z][A-Z][0-9]\n' '[_*1000]')) \
 845   $(eval ALL_TEST_IDS += $(TEST_ID)) \
 846   $(if $(call UseCustomTestHandler, $(test)), \
 847     $(eval $(call SetupRunCustomTest, $(TEST_ID), \
 848         TEST := $(test), \
 849     )) \
 850   ) \
 851   $(if $(call UseGtestTestHandler, $(test)), \
 852     $(eval $(call SetupRunGtestTest, $(TEST_ID), \
 853         TEST := $(test), \
 854     )) \
 855   ) \
 856   $(if $(call UseJtregTestHandler, $(test)), \
 857     $(eval $(call SetupRunJtregTest, $(TEST_ID), \
 858         TEST := $(test), \
 859     )) \
 860   ) \
 861   $(if $(call UseSpecialTestHandler, $(test)), \
 862     $(eval $(call SetupRunSpecialTest, $(TEST_ID), \
 863         TEST := $(test), \
 864     )) \
 865   ) \
 866 )
 867 
 868 # Sort also removes duplicates, so if there is any we'll get fewer words.
 869 ifneq ($(words $(ALL_TEST_IDS)), $(words $(sort $(ALL_TEST_IDS))))
 870   $(error Duplicate test specification)
 871 endif
 872 
 873 
 874 ################################################################################
 875 # The main target for RunTests.gmk
 876 ################################################################################
 877 
 878 # The SetupRun*Test functions have populated TARGETS.
 879 
 880 TEST_FAILURE := false
 881 
 882 run-test: $(TARGETS)
 883         # Create and print a table of the result of all tests run
 884         $(RM) $(TEST_SUMMARY).old 2> /dev/null
 885         $(MV) $(TEST_SUMMARY) $(TEST_SUMMARY).old 2> /dev/null || true
 886         $(RM) $(TEST_LAST_IDS).old 2> /dev/null
 887         $(MV) $(TEST_LAST_IDS) $(TEST_LAST_IDS).old 2> /dev/null || true
 888         $(ECHO) >> $(TEST_SUMMARY) ==============================
 889         $(ECHO) >> $(TEST_SUMMARY) Test summary
 890         $(ECHO) >> $(TEST_SUMMARY) ==============================
 891         $(PRINTF) >> $(TEST_SUMMARY) "%2s %-49s %5s %5s %5s %5s %2s\n" "  " \
 892             TEST TOTAL PASS FAIL ERROR " "
 893         $(foreach test, $(TESTS_TO_RUN), \
 894           $(eval TEST_ID := $(shell $(ECHO) $(strip $(test)) | \
 895               $(TR) -cs '[a-z][A-Z][0-9]\n' '[_*1000]')) \
 896             $(ECHO) >> $(TEST_LAST_IDS) $(TEST_ID) $(NEWLINE) \
 897           $(eval NAME_PATTERN := $(shell $(ECHO) $(test) | $(TR) -c '\n' '[_*1000]')) \
 898           $(if $(filter __________________________________________________%, $(NAME_PATTERN)), \
 899             $(eval TEST_NAME := ) \
 900             $(PRINTF) >> $(TEST_SUMMARY) "%2s %-49s\n" "  " "$(test)"  $(NEWLINE) \
 901           , \
 902             $(eval TEST_NAME := $(test)) \
 903           ) \
 904           $(if $(filter $($(TEST_ID)_PASSED), $($(TEST_ID)_TOTAL)), \
 905             $(PRINTF) >> $(TEST_SUMMARY) "%2s %-49s %5d %5d %5d %5d %2s\n" \
 906                 "  " "$(TEST_NAME)" $($(TEST_ID)_TOTAL) $($(TEST_ID)_PASSED) \
 907                 $($(TEST_ID)_FAILED) $($(TEST_ID)_ERROR) "  " $(NEWLINE) \
 908           , \
 909             $(PRINTF) >> $(TEST_SUMMARY) "%2s %-49s %5d %5d %5d %5d %2s\n" \
 910                  ">>" "$(TEST_NAME)" $($(TEST_ID)_TOTAL) $($(TEST_ID)_PASSED) \
 911                 $($(TEST_ID)_FAILED) $($(TEST_ID)_ERROR) "<<" $(NEWLINE) \
 912             $(eval TEST_FAILURE := true) \
 913           ) \
 914         )
 915         $(ECHO) >> $(TEST_SUMMARY) ==============================
 916         $(if $(filter true, $(TEST_FAILURE)), \
 917           $(ECHO) >> $(TEST_SUMMARY) TEST FAILURE $(NEWLINE) \
 918           $(MKDIR) -p $(MAKESUPPORT_OUTPUTDIR) $(NEWLINE) \
 919           $(TOUCH) $(MAKESUPPORT_OUTPUTDIR)/exit-with-error \
 920         , \
 921           $(ECHO) >> $(TEST_SUMMARY) TEST SUCCESS \
 922         )
 923         $(ECHO)
 924         $(CAT) $(TEST_SUMMARY)
 925         $(ECHO)
 926 
 927 ################################################################################
 928 
 929 all: run-test
 930 
 931 .PHONY: default all run-test $(TARGETS)