summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-28 22:35:46 +0000
committerChris Lattner <sabre@nondot.org>2003-06-28 22:35:46 +0000
commit45983ee12656caea5df9ba8a003ac0cd10ac6b37 (patch)
treece81b1d2076fcacd18abcdf6a7af10cbb007d116 /test/Makefile.tests
parentab1a5251634fd0ddba4a0332df31eeba352cdd44 (diff)
downloadllvm-45983ee12656caea5df9ba8a003ac0cd10ac6b37.tar.gz
llvm-45983ee12656caea5df9ba8a003ac0cd10ac6b37.tar.bz2
llvm-45983ee12656caea5df9ba8a003ac0cd10ac6b37.tar.xz
Make the TestRunner tests not print out horrible things when they run
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6953 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index fab085f4c9..3d66f17b32 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -54,8 +54,9 @@ LCCFLAGS += -O2 -Wall
LCXXFLAGS += -O2 -Wall
LLCFLAGS =
FAILURE = $(LEVEL)/test/Failure.sh
-TESTRUNR = PATH=$(LLVMTOOLCURRENT):$(LEVEL)/test/Scripts:$(PATH) \
- $(LEVEL)/test/TestRunner.sh
+TESTRUNR = @echo Running test: $<; \
+ PATH=$(LLVMTOOLCURRENT):$(LEVEL)/test/Scripts:$(PATH) \
+ $(LEVEL)/test/TestRunner.sh
# Native Tool Definitions
NATGCC = $(CC)