[llvm-commits] CVS: llvm/test/Programs/SingleSource/CustomChecked/Makefile
John Criswell
criswell at cs.uiuc.edu
Thu Oct 23 10:13:01 PDT 2003
Changes in directory llvm/test/Programs/SingleSource/CustomChecked:
Makefile updated: 1.8 -> 1.9
---
Log message:
Added full pathname to programs run with the TestRunner script.
---
Diffs of the changes: (+4 -4)
Index: llvm/test/Programs/SingleSource/CustomChecked/Makefile
diff -u llvm/test/Programs/SingleSource/CustomChecked/Makefile:1.8 llvm/test/Programs/SingleSource/CustomChecked/Makefile:1.9
--- llvm/test/Programs/SingleSource/CustomChecked/Makefile:1.8 Sat Oct 18 01:35:46 2003
+++ llvm/test/Programs/SingleSource/CustomChecked/Makefile Thu Oct 23 10:12:18 2003
@@ -35,19 +35,19 @@
$(PROGRAMS_TO_TEST:%=Output/%.run-lli): \
Output/%.run-lli: Output/%.llvm.bc $(LLI)
- -$(TESTRUNR) $(filter $*.%, $(Source)) "$(LLI) $(LLI_OPTS) $<" $@
+ -$(TESTRUNR) $(SourceDir)/$(filter $*.%, $(Source)) "$(LLI) $(LLI_OPTS) $<" $@
$(PROGRAMS_TO_TEST:%=Output/%.run-jit): \
Output/%.run-jit: Output/%.llvm.bc $(LLI)
- -$(TESTRUNR) $(filter $*.%, $(Source)) "$(LLI) $(JIT_OPTS) $<" $@
+ -$(TESTRUNR) $(SourceDir)/$(filter $*.%, $(Source)) "$(LLI) $(JIT_OPTS) $<" $@
$(PROGRAMS_TO_TEST:%=Output/%.run-llc): \
Output/%.run-llc: Output/%.llc
- -$(TESTRUNR) $(filter $*.%, $(Source)) "$< $(RUN_OPTIONS)" $@
+ -$(TESTRUNR) $(SourceDir)/$(filter $*.%, $(Source)) "$< $(RUN_OPTIONS)" $@
$(PROGRAMS_TO_TEST:%=Output/%.run-cbe): \
Output/%.run-cbe: Output/%.cbe
- -$(TESTRUNR) $(filter $*.%, $(Source)) "$< $(RUN_OPTIONS)" $@
+ -$(TESTRUNR) $(SourceDir)/$(filter $*.%, $(Source)) "$< $(RUN_OPTIONS)" $@
$(PROGRAMS_TO_TEST:%=Output/%.exe-lli): \
More information about the llvm-commits
mailing list