From 78f6770876d0ac9dd125cac7a33db930eea20d0b Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Mon, 13 Jun 2016 09:31:20 -0600 Subject: [PATCH] 8159186: jdk/test/Makefile: allow users to set verbosity Reviewed-by: erikj --- jdk/test/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jdk/test/Makefile b/jdk/test/Makefile index 86e69f0d3b2..8f2038527a3 100644 --- a/jdk/test/Makefile +++ b/jdk/test/Makefile @@ -316,8 +316,9 @@ JTREG_BASIC_OPTIONS += -a # Always turn on assertions JTREG_ASSERT_OPTION = -ea -esa JTREG_BASIC_OPTIONS += $(JTREG_ASSERT_OPTION) -# Report details on all failed or error tests, times too -JTREG_BASIC_OPTIONS += -v:fail,error,time +# jtreg verbosity setting +JTREG_VERBOSE ?= fail,error,time +JTREG_BASIC_OPTIONS += $(if $(JTREG_VERBOSE),-v:$(JTREG_VERBOSE)) # Retain all files for failing tests JTREG_BASIC_OPTIONS += -retain:fail,error # Ignore tests are not run and completely silent about it