aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-10-23 15:12:18 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-10-23 15:12:18 +0000
commit751e6b5624b8253445a1b7f5aac49152595c0023 (patch)
treef9c0cc2b4b1b7affcebdcf47b7e63e77a255f609
parent4752c75657a42712a6f11002d1ffc476932da6ab (diff)
Added full pathname to programs run with the TestRunner script.
git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@9405 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--SingleSource/CustomChecked/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/SingleSource/CustomChecked/Makefile b/SingleSource/CustomChecked/Makefile
index 960d3efa..542ba534 100644
--- a/SingleSource/CustomChecked/Makefile
+++ b/SingleSource/CustomChecked/Makefile
@@ -35,19 +35,19 @@ endif
$(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): \