summaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-11 23:43:59 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-11 23:43:59 +0000
commit060cad580b63fea50beed1d6a1f2ee70ec96d246 (patch)
treeb4ad224987c5834d36b42550895d6944612cda31 /test/Makefile
parent839fbc52fad8683c1f7d3a12ac4e09e2e5daa42d (diff)
Stop looking for tests in the Output/ directory.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75404 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 4c65d7c015..25af266c76 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -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