From ab8fe0b0b22a8bbcb86adc74e5cee5cc5d9c998a Mon Sep 17 00:00:00 2001 From: Erik Helin Date: Thu, 22 Oct 2015 15:28:49 +0200 Subject: [PATCH] 8139271: Add top-level Makefile target to run hotspots jtreg tests Reviewed-by: ihse, erikj --- make/Main.gmk | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/make/Main.gmk b/make/Main.gmk index 4c2ab1ac176..f096084c28f 100644 --- a/make/Main.gmk +++ b/make/Main.gmk @@ -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 ################################################################################