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

Daniel Dunbar daniel at zuster.org
Thu Aug 28 16:28:16 PDT 2008


Author: ddunbar
Date: Thu Aug 28 18:28:16 2008
New Revision: 55513

URL: http://llvm.org/viewvc/llvm-project?rev=55513&view=rev
Log:
Allow 'make TESTDIRS=Sema' in test/ directory for only running a
subset of tests.

Modified:
    cfe/trunk/test/Makefile

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

==============================================================================
--- cfe/trunk/test/Makefile (original)
+++ cfe/trunk/test/Makefile Thu Aug 28 18:28:16 2008
@@ -1,8 +1,8 @@
 LEVEL = ../../..
 include $(LEVEL)/Makefile.common
 
-# Test in all immediate subdirectories.
-TESTDIRS = $(shell echo $(PROJ_SRC_DIR)/*/)
+# Test in all immediate subdirectories if unset.
+TESTDIRS ?= $(shell echo $(PROJ_SRC_DIR)/*/)
 
 # Only run rewriter tests on darwin.
 ifeq ($(OS),Darwin)





More information about the cfe-commits mailing list