[cfe-commits] r86122 - /cfe/trunk/test/Makefile
Daniel Dunbar
daniel at zuster.org
Wed Nov 4 22:55:24 PST 2009
Author: ddunbar
Date: Thu Nov 5 00:55:24 2009
New Revision: 86122
URL: http://llvm.org/viewvc/llvm-project?rev=86122&view=rev
Log:
Add EXTRA_TESTDIRS variable for specifying additional test directories.
Modified:
cfe/trunk/test/Makefile
Modified: cfe/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Makefile?rev=86122&r1=86121&r2=86122&view=diff
==============================================================================
--- cfe/trunk/test/Makefile (original)
+++ cfe/trunk/test/Makefile Thu Nov 5 00:55:24 2009
@@ -11,6 +11,9 @@
# 'lit' wants objdir paths, so it will pick up the lit.site.cfg.
TESTDIRS := $(TESTDIRS:$(PROJ_SRC_DIR)%=$(PROJ_OBJ_DIR)%)
+# Allow EXTRA_TESTDIRS to provide additional test directories.
+TESTDIRS += $(EXTRA_TESTDIRS)
+
ifndef TESTARGS
ifdef VERBOSE
TESTARGS = -v
More information about the cfe-commits
mailing list