Change test/Makefile to automatically test all subdirs.

llvm-svn: 54923
This commit is contained in:
Daniel Dunbar 2008-08-18 18:05:17 +00:00
parent 5a42754328
commit 309dd7e31a
1 changed files with 2 additions and 1 deletions

View 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)