]> granicus.if.org Git - clang/commitdiff
When testing with VERBOSE=0, report results in the ISO format. We
authorMike Stump <mrs@apple.com>
Fri, 13 Mar 2009 00:21:49 +0000 (00:21 +0000)
committerMike Stump <mrs@apple.com>
Fri, 13 Mar 2009 00:21:49 +0000 (00:21 +0000)
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

test/Makefile

index 81a1d790fc5dbffae4e33b9d74aae36877f3194d..17074b667050e605ea9d6b4c8d87e797c349c30c 100644 (file)
@@ -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 '.'