diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-23 23:51:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-23 23:51:19 +0000 |
commit | eb6538cd13c1043e373e58247f499e8a8a38cd59 (patch) | |
tree | f3d6aa87b5cd00ea73e1b9bd1a22aeb934a4c79a /test/Jello | |
parent | f64387d8350dc9ed1002a3e139082b0cc3e92b48 (diff) | |
download | external_llvm-eb6538cd13c1043e373e58247f499e8a8a38cd59.zip external_llvm-eb6538cd13c1043e373e58247f499e8a8a38cd59.tar.gz external_llvm-eb6538cd13c1043e373e58247f499e8a8a38cd59.tar.bz2 |
Jello is now part of LLI
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5122 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Jello')
-rw-r--r-- | test/Jello/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Jello/Makefile b/test/Jello/Makefile index eef9f91..de01a98 100644 --- a/test/Jello/Makefile +++ b/test/Jello/Makefile @@ -1,6 +1,6 @@ # test/Regression/Jello/Makefile # -# This directory contains regression tests for the LLVM jello program. +# This directory contains regression tests for the LLVM x86 JIT # LEVEL = ../../.. include $(LEVEL)/test/Makefile.tests @@ -10,9 +10,9 @@ FTESTS := $(wildcard *.llx) # Freeform tests all:: $(addprefix Output/, $(TESTS:%.ll=%.out)) -Output/%.out: Output/%.bc $(LJELLO) +Output/%.out: Output/%.bc $(LLI) @echo "======== Running $< ===================" - $(VERB) jello -stats $< > $@ 2>&1 || \ + $(VERB) $(LLI) -force-interpreter=false -stats $< > $@ 2>&1 || \ ( cat $@; rm -f $@; $(FAILURE) $@ ) |