[cfe-commits] r75404 - /cfe/trunk/test/Makefile
Daniel Dunbar
daniel at zuster.org
Sat Jul 11 16:44:00 PDT 2009
Author: ddunbar
Date: Sat Jul 11 18:43:59 2009
New Revision: 75404
URL: http://llvm.org/viewvc/llvm-project?rev=75404&view=rev
Log:
Stop looking for tests in the Output/ directory.
Modified:
cfe/trunk/test/Makefile
Modified: cfe/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Makefile?rev=75404&r1=75403&r2=75404&view=diff
==============================================================================
--- cfe/trunk/test/Makefile (original)
+++ cfe/trunk/test/Makefile Sat Jul 11 18:43:59 2009
@@ -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
More information about the cfe-commits
mailing list