summaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-03-13 00:21:49 +0000
committerMike Stump <mrs@apple.com>2009-03-13 00:21:49 +0000
commit039df91439aeccc6b8490ddd12b28d9541d80026 (patch)
treef174a59e62030283927719ba0367e0117722722a /test/Makefile
parent8b1604ece7bf6dc2ba811cd7d8767557e55e2ec2 (diff)
When testing with VERBOSE=0, report results in the ISO format. We
include the triplet so that people that run multiple targets in parallel, say i386 and x86_64 can distinguish between the two. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66849 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
index 81a1d790fc..17074b6670 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -10,8 +10,13 @@ TESTDIRS +=
endif
ifdef VERBOSE
+ifeq ($(VERBOSE),0)
+PROGRESS = :
+REPORTFAIL = echo 'FAILED: clang' $(TARGET_TRIPLE) $(subst $(LLVM_SRC_ROOT)/tools/clang/,,$<)
+else
PROGRESS = echo $<
REPORTFAIL = cat $@
+endif
DONE = true
else
PROGRESS = printf '.'