summaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-12 19:00:20 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-12 19:00:20 +0000
commit0126e5e9de7707253c9a129dfa03470f068da3a3 (patch)
treee3fd7226433d09a4460c58fd524a730cd585dc38 /test/Makefile
parent060cad580b63fea50beed1d6a1f2ee70ec96d246 (diff)
Revert to using shell to find files instead of 'find', that wasn't portable.
- I think I did this commit sequence before. :) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75420 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile
index 25af266c76..4c65d7c015 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,9 +1,8 @@
LEVEL = ../../..
include $(LEVEL)/Makefile.common
-# 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)
+# Test in all immediate subdirectories if unset.
+TESTDIRS ?= $(shell echo $(PROJ_SRC_DIR)/*/)
ifndef TESTARGS
ifdef VERBOSE