summaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-03-13 00:41:24 +0000
committerMike Stump <mrs@apple.com>2009-03-13 00:41:24 +0000
commite3c75e0861e9a5aa26fe32234bc8b023f8fd895a (patch)
tree778ff4b2dd51b923d1a557e02a141344ccca6944 /test/Makefile
parent3fd95ce225393fe4a3623e429766a8c3f487ff9d (diff)
Fix spelling error, and add target triplet to header.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66853 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 17074b6670..33858a6500 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -12,7 +12,7 @@ endif
ifdef VERBOSE
ifeq ($(VERBOSE),0)
PROGRESS = :
-REPORTFAIL = echo 'FAILED: clang' $(TARGET_TRIPLE) $(subst $(LLVM_SRC_ROOT)/tools/clang/,,$<)
+REPORTFAIL = echo 'FAIL: clang' $(TARGET_TRIPLE) $(subst $(LLVM_SRC_ROOT)/tools/clang/,,$<)
else
PROGRESS = echo $<
REPORTFAIL = cat $@
@@ -32,7 +32,7 @@ Output/%.testresults: %
all::
@ mkdir -p $(addprefix Output/, $(TESTDIRS))
@ rm -f $(TESTS)
- @ echo '--- Running clang tests ---'
+ @ echo '--- Running clang tests for $(TARGET_TRIPLE) ---'
@ $(MAKE) $(TESTS)
@ $(DONE)
@ !(cat $(TESTS) | grep -q " FAILED! ")