diff options
author | Duncan Sands <baldrick@free.fr> | 2007-04-16 16:45:12 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2007-04-16 16:45:12 +0000 |
commit | 64609d341e562dc8faba14df1dc1b0aca5d9cc08 (patch) | |
tree | 8ce2ac1c8e3409e1eb3a8ce872c604ca132649d4 | |
parent | 0829a30f266284d58acfc0e03f37d08be733ae02 (diff) |
Look for site.exp in the build directory, not the source directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36138 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index c4212592cf..14f9dad2d6 100644 --- a/test/Makefile +++ b/test/Makefile @@ -48,7 +48,7 @@ CLEANED_TESTONE := $(patsubst test/%,%,$(CLEANED_TESTONE)) SUBDIR := $(shell dirname $(CLEANED_TESTONE)) TESTPATH := $(LLVM_SRC_ROOT)/test/$(CLEANED_TESTONE) check-one: site.exp $(TCLSH) - $(Verb)( echo "source $(LLVM_SRC_ROOT)/test/site.exp" ; \ + $(Verb)( echo "source $(LLVM_OBJ_ROOT)/test/site.exp" ; \ echo "set subdir $(SUBDIR)" ; \ echo "proc pass { msg } { puts \"PASS: \$$msg\" } "; \ echo "proc fail { msg } { puts \"FAIL: \$$msg\" }" ; \ |