[llvm-commits] CVS: llvm-java/test/Makefile.test

Alkis Evlogimenos alkis at cs.uiuc.edu
Sun Dec 5 13:52:53 PST 2004



Changes in directory llvm-java/test:

Makefile.test updated: 1.23 -> 1.24
---
Log message:

Don't stop if the llvm-jit crashes.


---
Diffs of the changes:  (+2 -2)

Index: llvm-java/test/Makefile.test
diff -u llvm-java/test/Makefile.test:1.23 llvm-java/test/Makefile.test:1.24
--- llvm-java/test/Makefile.test:1.23	Sun Dec  5 15:44:09 2004
+++ llvm-java/test/Makefile.test	Sun Dec  5 15:52:42 2004
@@ -63,12 +63,12 @@
 # rule to run a .class file with the jvm
 %.out-nat: %.class
 	$(Echo) Running $(notdir $*) with the host JVM
-	$(Verb)LD_LIBRARY_PATH=$(LibDir) $(JAVA) -cp Output $(notdir $*) > $*.out-nat || rm -f $*.out-nat
+	-$(Verb)LD_LIBRARY_PATH=$(LibDir) $(JAVA) -cp Output $(notdir $*) > $*.out-nat || rm -f $*.out-nat
 
 # rule to run a .class file with the llvm jit
 %.out-jit: %.llvm.bc
 	$(Echo) Running $(notdir $*) with the llvm JIT
-	$(Verb)$(LLI) $< > $*.out-jit
+	-$(Verb)$(LLI) $< > $*.out-jit
 
 # rule to diff test output
 %.diff: %.out-nat %.out-jit






More information about the llvm-commits mailing list