aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-02-18 20:17:44 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-02-18 20:17:44 +0000
commit13a29035cc542c5869a2044cb7dc4978870b0357 (patch)
treed1d807ee6d179da0b1e49bba67e34cb376409f73 /test/Makefile
parent5443af2b41dd1d4739981fdae6ec6a306354973f (diff)
downloadexternal_llvm-13a29035cc542c5869a2044cb7dc4978870b0357.zip
external_llvm-13a29035cc542c5869a2044cb7dc4978870b0357.tar.gz
external_llvm-13a29035cc542c5869a2044cb7dc4978870b0357.tar.bz2
Allow dejagnu tests to run on Windows/Cygwin. Quote the value of the PATH
variable so that spaces don't screw it up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20240 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 36bdfc2..259f34c 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -28,7 +28,7 @@ RUNTESTFLAGS := --tool $(CLEANED_TESTSUITE)
endif
check-local:: site.exp
- PATH=$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH) \
+ PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
$(RUNTEST) $(RUNTESTFLAGS)
clean::