From: Daniel Dunbar Date: Mon, 18 Aug 2008 18:05:17 +0000 (+0000) Subject: Change test/Makefile to automatically test all subdirs. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b6b0f66a933df476dff89379101d6faddc59cf6;p=clang Change test/Makefile to automatically test all subdirs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54923 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile b/test/Makefile index 8164f2ee2c..c8404a07bf 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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)