summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Makefile6
-rw-r--r--test/lib/llvm.exp1
2 files changed, 6 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index c0f37e94fb..bbd7132884 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -22,10 +22,14 @@ include Makefile.tests
# DejaGNU testing support
#===------------------------------------------------------------------------===#
+ifdef VERBOSE
+RUNTESTFLAGS := $(VERBOSE)
+endif
+
ifdef TESTSUITE
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
-RUNTESTFLAGS := --tool $(CLEANED_TESTSUITE)
+RUNTESTFLAGS += --tool $(CLEANED_TESTSUITE)
endif
IGNORE_TESTS :=
diff --git a/test/lib/llvm.exp b/test/lib/llvm.exp
index 05c910771a..70cae2ea4e 100644
--- a/test/lib/llvm.exp
+++ b/test/lib/llvm.exp
@@ -102,6 +102,7 @@ proc RunLLVMTests { test_source_files } {
#set timeout 40
set filename [file tail $test]
+ verbose "ABOUT TO RUN: $filename" 2
set outcome PASS
set tmpFile "$filename.tmp"