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 81a1d79..17074b6 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -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 '.'