From: Mike Stump Date: Fri, 13 Mar 2009 00:21:49 +0000 (+0000) Subject: When testing with VERBOSE=0, report results in the ISO format. We X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=039df91439aeccc6b8490ddd12b28d9541d80026;p=clang 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 --- 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 '.'