[cfe-commits] r75420 - /cfe/trunk/test/Makefile

Daniel Dunbar daniel at zuster.org
Sun Jul 12 12:00:21 PDT 2009


Author: ddunbar
Date: Sun Jul 12 14:00:20 2009
New Revision: 75420

URL: http://llvm.org/viewvc/llvm-project?rev=75420&view=rev
Log:
Revert to using shell to find files instead of 'find', that wasn't portable. 
 - I think I did this commit sequence before. :)

Modified:
    cfe/trunk/test/Makefile

Modified: cfe/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Makefile?rev=75420&r1=75419&r2=75420&view=diff

==============================================================================
--- cfe/trunk/test/Makefile (original)
+++ cfe/trunk/test/Makefile Sun Jul 12 14:00:20 2009
@@ -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





More information about the cfe-commits mailing list