[llvm-commits] CVS: llvm/test/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Sun Dec 12 13:40:04 PST 2004
Changes in directory llvm/test:
Makefile updated: 1.76 -> 1.77
---
Log message:
Dejagnu doesn't work if you do TESTSUITE=.../
You can't pass the trailing / into Dejagnu, so make the makefile strip it off
---
Diffs of the changes: (+2 -1)
Index: llvm/test/Makefile
diff -u llvm/test/Makefile:1.76 llvm/test/Makefile:1.77
--- llvm/test/Makefile:1.76 Mon Dec 6 15:35:32 2004
+++ llvm/test/Makefile Sun Dec 12 15:39:49 2004
@@ -23,7 +23,8 @@
#===------------------------------------------------------------------------===#
ifdef TESTSUITE
-RUNTESTFLAGS := --tool $(TESTSUITE)
+CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
+RUNTESTFLAGS := --tool $(CLEANED_TESTSUITE)
endif
check-local:: site.exp
More information about the llvm-commits
mailing list