diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-09-16 23:43:13 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-09-16 23:43:13 +0000 |
commit | 799c6f6fafbfbe02ad4323508d2511b1efd9fd7a (patch) | |
tree | adcc8f54d3be85c265c155165b1959fae8dfbafe | |
parent | e2b00834749b685f8023c3984632d775c1550da3 (diff) |
Ignore XFAIL tests when checking for make failure in test/
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56262 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 5d0825b2b6..d8e34b1096 100644 --- a/test/Makefile +++ b/test/Makefile @@ -31,7 +31,7 @@ all:: @ echo '--- Running clang tests ---' @ $(MAKE) $(TESTS) @ $(DONE) - @ cat $(TESTS) | grep -v ' HAS NO RUN LINE! ****' | $(LLVM_SRC_ROOT)/test/Scripts/count 0 > /dev/null + @ cat $(TESTS) | grep -v 'XFAILED' | grep -v ' HAS NO RUN LINE! ****' | $(LLVM_SRC_ROOT)/test/Scripts/count 0 > /dev/null report: $(TESTS) @ cat $^ |