8139271: Add top-level Makefile target to run hotspots jtreg tests

Reviewed-by: ihse, erikj
This commit is contained in:
Erik Helin 2015-10-22 15:28:49 +02:00
parent 54e4c9c90c
commit ab8fe0b0b2

View File

@ -301,6 +301,9 @@ ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \
test:
$(call RunTests, $(TEST))
test-hotspot-jtreg:
$(call RunTests, "hotspot_all")
test-hotspot-jtreg-native:
$(call RunTests, "hotspot_native_sanity")
@ -313,8 +316,8 @@ test-jdk-jtreg-native:
test-make:
($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET))
ALL_TARGETS += test test-hotspot-jtreg-native test-hotspot-internal \
test-jdk-jtreg-native test-make
ALL_TARGETS += test test-hotspot-jtreg test-hotspot-jtreg-native \
test-hotspot-internal test-jdk-jtreg-native test-make
################################################################################
# Verification targets
@ -475,6 +478,8 @@ else
test-hotspot-internal: exploded-image
test-hotspot-jtreg: jimages test-image
endif
################################################################################