summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-09-13 02:45:57 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-09-13 02:45:57 +0000
commit8bb233b6b7ea80f45d0c37f3dba25c3f8afe18c4 (patch)
treedf4f1213bdb010a844b2b65f48a2d9069a063529 /test/Makefile
parent0b88ed9dece0e73380d7ec58f24f8ff0c7eeb478 (diff)
downloadllvm-8bb233b6b7ea80f45d0c37f3dba25c3f8afe18c4.tar.gz
llvm-8bb233b6b7ea80f45d0c37f3dba25c3f8afe18c4.tar.bz2
llvm-8bb233b6b7ea80f45d0c37f3dba25c3f8afe18c4.tar.xz
Add LLVMGCCBINDIR to path, since LLVMC expects to find llvm-gcc in the path.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81669 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 9db85c5393..d344823e96 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -66,7 +66,7 @@ endif
ifneq ($(RUNTEST),)
check-local:: site.exp
( $(ULIMIT) \
- PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
+ PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(LLVMGCCDIR)/bin:$(PATH)" \
$(RUNTEST) $(RUNTESTFLAGS) )
else
check-local:: site.exp
@@ -78,6 +78,7 @@ check-local-lit:: lit.site.cfg
$(LLVM_SRC_ROOT)/utils/lit/lit.py \
--path "$(LLVMToolDir)" \
--path "$(LLVM_SRC_ROOT)/test/Scripts" \
+ --path "$(LLVMGCCDIR)/bin" \
$(LIT_ARGS) $(LIT_TESTSUITE) )
ifdef TESTONE