summaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-03-18 20:25:18 +0000
committerMike Stump <mrs@apple.com>2009-03-18 20:25:18 +0000
commit9a2f1acf79b3f9960deeffe3fca1b8ee38572b84 (patch)
tree6b94612b4757f741db0e3622d267c94908d4d92b /test/Makefile
parent299e829512641ef07e996db626994c281f22e2de (diff)
Add version information to ISO style test results.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 33858a6500..82f376f96e 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -13,11 +13,12 @@ ifdef VERBOSE
ifeq ($(VERBOSE),0)
PROGRESS = :
REPORTFAIL = echo 'FAIL: clang' $(TARGET_TRIPLE) $(subst $(LLVM_SRC_ROOT)/tools/clang/,,$<)
+DONE = $(LLVMToolDir)/clang-driver -v
else
PROGRESS = echo $<
REPORTFAIL = cat $@
-endif
DONE = true
+endif
else
PROGRESS = printf '.'
REPORTFAIL = (echo; echo '----' $< 'failed ----')