aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-02 01:40:24 +0000
committerChris Lattner <sabre@nondot.org>2002-11-02 01:40:24 +0000
commitb3e3cae32b51e06023267da6f23efe66590514f9 (patch)
tree3d99186367c46175b13c0e5d9ff7456772caf722
parentb1761fc4df0fbcb6fc2987e4f48a188f717edba0 (diff)
Tests results are invalidated when jello is rebuilt
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4494 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Jello/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Jello/Makefile b/test/Jello/Makefile
index a9053845d9..e9c15a7b4e 100644
--- a/test/Jello/Makefile
+++ b/test/Jello/Makefile
@@ -10,7 +10,7 @@ FTESTS := $(wildcard *.llx) # Freeform tests
all:: $(addprefix Output/, $(TESTS:%.ll=%.out))
-Output/%.out: Output/%.bc
+Output/%.out: Output/%.bc $(LJELLO)
@echo "======== Running $< ==================="
$(VERB) jello $< > $@ 2>&1 || \
( cat $@; rm -f $@; $(FAILURE) $@ )
@@ -18,6 +18,6 @@ Output/%.out: Output/%.bc
all:: $(addprefix Output/, $(FTESTS:%.llx=%.llx.out))
-Output/%.llx.out: %.llx Output/.dir $(LAS)
+Output/%.llx.out: %.llx Output/.dir $(LJELLO)
-$(TESTRUNR) $<