[llvm-commits] CVS: llvm/test/Makefile

Reid Spencer reid at x10sys.com
Fri Nov 10 17:03:01 PST 2006



Changes in directory llvm/test:

Makefile updated: 1.90 -> 1.91
---
Log message:

Enable path completion when typing the TESTSUITE= option by allowing the
test directory to precede the test suite name. That is, it will strip off
test/ from TESTSUITE which allows path completion from the command line.


---
Diffs of the changes:  (+1 -0)

 Makefile |    1 +
 1 files changed, 1 insertion(+)


Index: llvm/test/Makefile
diff -u llvm/test/Makefile:1.90 llvm/test/Makefile:1.91
--- llvm/test/Makefile:1.90	Mon Jul 31 19:07:58 2006
+++ llvm/test/Makefile	Fri Nov 10 19:02:45 2006
@@ -24,6 +24,7 @@
 
 ifdef TESTSUITE
 CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
+CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
 RUNTESTFLAGS := --tool $(CLEANED_TESTSUITE)
 endif
 






More information about the llvm-commits mailing list