aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-18 19:39:06 +0000
committerChris Lattner <sabre@nondot.org>2003-06-18 19:39:06 +0000
commitbaed07333f00dc192a33eab9764df466da60daf3 (patch)
tree7f419a5776f816ce8e4379bb6340a3598d3378d0
parent893f025262574d01de5585d64860673e13d77ee5 (diff)
Move llvm tools to the start of the testrunner path, which allows the llvm 'as'
tool to be found in preference to the system 'as' tool. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6775 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Makefile.tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index 3b4bbaf871..cedeef81c8 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -53,7 +53,7 @@ LCCFLAGS += -O2 -Wall
LCXXFLAGS += -O2 -Wall
LLCFLAGS =
FAILURE = $(LEVEL)/test/Failure.sh
-TESTRUNR = PATH=$(PATH):$(LLVMTOOLCURRENT) $(LEVEL)/test/TestRunner.sh
+TESTRUNR = PATH=$(LLVMTOOLCURRENT):$(PATH) $(LEVEL)/test/TestRunner.sh
# Native Tool Definitions
NATGCC = $(CC)