From 799c6f6fafbfbe02ad4323508d2511b1efd9fd7a Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Tue, 16 Sep 2008 23:43:13 +0000 Subject: [PATCH] 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 --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $^ -- 2.50.1