[cfe-commits] r55105 - /cfe/trunk/test/Makefile
Daniel Dunbar
daniel at zuster.org
Wed Aug 20 20:03:45 PDT 2008
Author: ddunbar
Date: Wed Aug 20 22:03:44 2008
New Revision: 55105
URL: http://llvm.org/viewvc/llvm-project?rev=55105&view=rev
Log:
Reorder the PATH used during testing so $(ToolDir) and the LLVM
scripts dir appear before the user path.
- This is an attempt to pick up the right executables. We should
probably be substituting the exact things we want for clang a la
the LLVM test script.
Modified:
cfe/trunk/test/Makefile
Modified: cfe/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Makefile?rev=55105&r1=55104&r2=55105&view=diff
==============================================================================
--- cfe/trunk/test/Makefile (original)
+++ cfe/trunk/test/Makefile Wed Aug 20 22:03:44 2008
@@ -23,7 +23,7 @@
Output/%.testresults: %
@ $(PROGRESS)
- @ PATH=$$PATH:$(ToolDir):$(LLVM_SRC_ROOT)/test/Scripts VG=$(VG) $(PROJ_SRC_DIR)/TestRunner.sh $< > $@ || $(REPORTFAIL)
+ @ PATH=$(ToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$$PATH VG=$(VG) $(PROJ_SRC_DIR)/TestRunner.sh $< > $@ || $(REPORTFAIL)
all::
@ mkdir -p $(addprefix Output/, $(TESTDIRS))
More information about the cfe-commits
mailing list