1 # 2 # Copyright (c) 2017, 2019, 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 ifndef _FIND_TESTS_GMK 27 _FIND_TESTS_GMK := 1 28 29 # This makefile can be called directly to just trigger generation of the cache 30 # makefile. If so, SPEC and MakeBase.gmk need to be included. 31 ifeq ($(FINDTESTS_STAND_ALONE), true) 32 include $(SPEC) 33 include MakeBase.gmk 34 endif 35 36 # Make sure this variable is not lazy evaled. 37 ALL_NAMED_TESTS := 38 39 # Hook to include the corresponding custom file, if present. 40 $(eval $(call IncludeCustomExtension, common/FindTests.gmk)) 41 42 # TEST_BASEDIRS might have been set by a custom extension 43 TEST_BASEDIRS += $(TOPDIR)/test $(TOPDIR) 44 45 # JTREG_TESTROOTS might have been set by a custom extension 46 JTREG_TESTROOTS += $(addprefix $(TOPDIR)/test/, hotspot/jtreg jdk langtools nashorn jaxp) 47 48 # Extract the names of the Jtreg group files from the TEST.ROOT files. The 49 # TEST.ROOT files being properties files can be interpreted as makefiles so 50 # use include to get at the contents instead of expensive shell calls. We are 51 # looking for the "groups" property in each file. 52 JTREG_ROOT_FILES := $(addsuffix /TEST.ROOT, $(JTREG_TESTROOTS)) 53 JTREG_GROUP_FILES := 54 $(foreach root, $(JTREG_TESTROOTS), \ 55 $(eval include $(root)/TEST.ROOT) \ 56 $(eval $(root)_JTREG_GROUP_FILES := $$(addprefix $(root)/, $$(groups))) \ 57 $(eval JTREG_GROUP_FILES += $$($(root)_JTREG_GROUP_FILES)) \ 58 ) 59 60 # Cache the expensive to calculate test names in a generated makefile. 61 FIND_TESTS_CACHE_FILE := $(MAKESUPPORT_OUTPUTDIR)/find-tests.gmk 62 63 # If this file is deemed outdated, it will automatically get regenerated 64 # by this rule before being included below. 65 $(FIND_TESTS_CACHE_FILE): $(JTREG_ROOT_FILES) $(JTREG_GROUP_FILES) \ 66 $(TOPDIR)/test/make/TestMake.gmk 67 $(call MakeTargetDir) 68 ( $(foreach root, $(JTREG_TESTROOTS), \ 69 $(PRINTF) "\n$(root)_JTREG_TEST_GROUPS := " ; \ 70 $(SED) -n -e 's/^\#.*//g' -e 's/\([^ ]*\)\w*=.*/\1/gp' \ 71 $($(root)_JTREG_GROUP_FILES) \ 72 | $(SORT) -u | $(TR) '\n' ' ' ; \ 73 ) \ 74 ) > $@ 75 $(PRINTF) "\nMAKE_TEST_TARGETS := " >> $@ 76 $(MAKE) -s --no-print-directory $(MAKE_ARGS) \ 77 SPEC=$(SPEC) -f $(TOPDIR)/test/make/TestMake.gmk print-targets \ 78 TARGETS_FILE=$@ 79 80 -include $(FIND_TESTS_CACHE_FILE) 81 82 # Create a list of all available Jtreg test groups in all components 83 JTREG_TEST_GROUPS += $(sort $(foreach root, $(JTREG_TESTROOTS), \ 84 $($(root)_JTREG_TEST_GROUPS))) 85 86 # Add Jtreg test groups to list of named tests (test groups, test list, etc) 87 # ALL_NAMED_TESTS might have been set by a custom extension 88 ALL_NAMED_TESTS += $(JTREG_TEST_GROUPS) 89 90 # Add the make test targets 91 ALL_NAMED_TESTS += $(addprefix make-, $(MAKE_TEST_TARGETS)) 92 93 # Add Gtest 94 ALL_NAMED_TESTS += gtest 95 96 # Add microbenchmarks 97 ALL_NAMED_TESTS += micro 98 99 # Add special tests 100 ALL_NAMED_TESTS += failure-handler make 101 102 ################################################################################ 103 104 endif # _FIND_TESTS_GMK