# HG changeset patch # User mikael # Date 1430959344 25200 # Node ID e1b420c520a0c90805b642bccdba04e7c73721f4 # Parent 69f942690128bbc4ea24d62330928e9a24f60518 8079545: [TESTBUG] hotspot_basicvmtest doesn't fail even if VM crashes Reviewed-by: ctornqvi, dholmes diff -r 69f942690128 -r e1b420c520a0 hotspot/test/Makefile --- a/hotspot/test/Makefile Tue May 05 12:33:57 2015 -0700 +++ b/hotspot/test/Makefile Wed May 06 17:42:24 2015 -0700 @@ -368,6 +368,10 @@ for variant in $(JVM_VARIANTS); \ do \ $(MAKE) JAVA_ARGS="$(JAVA_ARGS) -$$variant" hotspot_$${variant}test; \ + res=$$?; \ + if [ $$res -ne 0 ]; then \ + exit $$res; \ + fi; \ done PHONY_LIST += hotspot_basicvmtest