[cfe-commits] r66849 - /cfe/trunk/test/Makefile
Mike Stump
mrs at apple.com
Thu Mar 12 17:21:49 PDT 2009
Author: mrs
Date: Thu Mar 12 19:21:49 2009
New Revision: 66849
URL: http://llvm.org/viewvc/llvm-project?rev=66849&view=rev
Log:
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.
Modified:
cfe/trunk/test/Makefile
Modified: cfe/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Makefile?rev=66849&r1=66848&r2=66849&view=diff
==============================================================================
--- cfe/trunk/test/Makefile (original)
+++ cfe/trunk/test/Makefile Thu Mar 12 19:21:49 2009
@@ -10,8 +10,13 @@
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 '.'
More information about the cfe-commits
mailing list