]> granicus.if.org Git - clang/commitdiff
Change test/Makefile to automatically test all subdirs.
authorDaniel Dunbar <daniel@zuster.org>
Mon, 18 Aug 2008 18:05:17 +0000 (18:05 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 18 Aug 2008 18:05:17 +0000 (18:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54923 91177308-0d34-0410-b5e6-96231b3b80d8

test/Makefile

index 8164f2ee2c59de1a69ef0236fd572305f21842b1..c8404a07bfa012348f8380262c6c521a382ffe41 100644 (file)
@@ -1,7 +1,8 @@
 LEVEL = ../../..
 include $(LEVEL)/Makefile.common
 
-TESTDIRS = CodeGen Lexer Preprocessor Parser Sema SemaCXX SemaObjC Analysis Serialization Rewriter
+# Test in all non .svn or Output directories below this one.
+TESTDIRS = $(shell find . -name .svn -prune -or -name Output -prune -or -type d -depth +0 -print)
 
 # Only run rewriter tests on darwin.
 ifeq ($(OS),Darwin)