[llvm-commits] [test-suite] r142659 - /test-suite/trunk/Makefile.tests

Duncan Sands baldrick at free.fr
Fri Oct 21 10:04:00 PDT 2011


Author: baldrick
Date: Fri Oct 21 12:04:00 2011
New Revision: 142659

URL: http://llvm.org/viewvc/llvm-project?rev=142659&view=rev
Log:
Errors here should be ignored, as they are already for all other
rules in this Makefile.  Otherwise the nightly test fails if clang
(or dragonegg) fails to compile some test, because this rule then
fails to convert the .ll output from clang (which doesn't exist
because clang failed) to .bc.

Modified:
    test-suite/trunk/Makefile.tests

Modified: test-suite/trunk/Makefile.tests
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.tests?rev=142659&r1=142658&r2=142659&view=diff
==============================================================================
--- test-suite/trunk/Makefile.tests (original)
+++ test-suite/trunk/Makefile.tests Fri Oct 21 12:04:00 2011
@@ -68,7 +68,7 @@
 
 # Compile from X.ll to X.bc
 %.bc: %.ll $(LLVMAS)
-	$(LLVMAS) $< -o $@
+	-$(LLVMAS) $< -o $@
 
 # LLVM Assemble from X.ll to Output/X.bc.  Because we are coming directly from
 # LLVM source, use the non-transforming assembler.





More information about the llvm-commits mailing list