[llvm-commits] [test-suite] r142662 - in /test-suite/branches/release_30: ./ Makefile.tests

Bill Wendling isanbard at gmail.com
Fri Oct 21 10:53:32 PDT 2011


Author: void
Date: Fri Oct 21 12:53:32 2011
New Revision: 142662

URL: http://llvm.org/viewvc/llvm-project?rev=142662&view=rev
Log:
Merging r142659:
------------------------------------------------------------------------
r142659 | baldrick | 2011-10-21 10:04:00 -0700 (Fri, 21 Oct 2011) | 6 lines

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/branches/release_30/   (props changed)
    test-suite/branches/release_30/Makefile.tests

Propchange: test-suite/branches/release_30/
------------------------------------------------------------------------------
    svn:mergeinfo = /test-suite/trunk:142659

Modified: test-suite/branches/release_30/Makefile.tests
URL: http://llvm.org/viewvc/llvm-project/test-suite/branches/release_30/Makefile.tests?rev=142662&r1=142661&r2=142662&view=diff
==============================================================================
--- test-suite/branches/release_30/Makefile.tests (original)
+++ test-suite/branches/release_30/Makefile.tests Fri Oct 21 12:53:32 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