]> granicus.if.org Git - clang/commitdiff
Stop looking for tests in the Output/ directory.
authorDaniel Dunbar <daniel@zuster.org>
Sat, 11 Jul 2009 23:43:59 +0000 (23:43 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sat, 11 Jul 2009 23:43:59 +0000 (23:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75404 91177308-0d34-0410-b5e6-96231b3b80d8

test/Makefile

index 4c65d7c0157d7d643f8d8c0ad9da462ab0216b0d..25af266c762deb6b8b166f0bb0738a356359d7c8 100644 (file)
@@ -1,8 +1,9 @@
 LEVEL = ../../..
 include $(LEVEL)/Makefile.common
 
-# Test in all immediate subdirectories if unset.
-TESTDIRS ?= $(shell echo $(PROJ_SRC_DIR)/*/)
+# Test in all immediate subdirectories if unset (except for the .svn and Output
+# directories).
+TESTDIRS ?= $(shell find $(PROJ_SRC_DIR) -depth 1 -type d -not -name .svn -prune -and -not -name Output -prune)
 
 ifndef TESTARGS
 ifdef VERBOSE