[cfe-commits] r54923 - /cfe/trunk/test/Makefile
Daniel Dunbar
daniel at zuster.org
Mon Aug 18 11:05:18 PDT 2008
Author: ddunbar
Date: Mon Aug 18 13:05:17 2008
New Revision: 54923
URL: http://llvm.org/viewvc/llvm-project?rev=54923&view=rev
Log:
Change test/Makefile to automatically test all subdirs.
Modified:
cfe/trunk/test/Makefile
Modified: cfe/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Makefile?rev=54923&r1=54922&r2=54923&view=diff
==============================================================================
--- cfe/trunk/test/Makefile (original)
+++ cfe/trunk/test/Makefile Mon Aug 18 13:05:17 2008
@@ -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)
More information about the cfe-commits
mailing list