summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-02-18 20:24:09 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-02-18 20:24:09 +0000
commit18c57290331c2c93041cdfab8ed36ad84ef029b4 (patch)
treea554a7675d01b03109865849275bebbb6c542fcb /test/Makefile.tests
parent13a29035cc542c5869a2044cb7dc4978870b0357 (diff)
downloadllvm-18c57290331c2c93041cdfab8ed36ad84ef029b4.tar.gz
llvm-18c57290331c2c93041cdfab8ed36ad84ef029b4.tar.bz2
llvm-18c57290331c2c93041cdfab8ed36ad84ef029b4.tar.xz
Quote the value of the PATH variable so that Cygwin and Windows can have
spaces in path names and not confuse the shell. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index c597de47fa..b46b96da36 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -39,7 +39,7 @@ LCXXFLAGS += -O2 -Wall
LLCFLAGS =
FAILURE = $(LLVM_SRC_ROOT)/test/Failure.sh
TESTRUNR = @echo Running test: $<; \
- PATH=$(LLVMTOOLCURRENT):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH) \
+ PATH="$(LLVMTOOLCURRENT):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
$(LLVM_SRC_ROOT)/test/TestRunner.sh
LLCLIBS := $(LLCLIBS) -lm