[llvm] r253454 - [LTO] Appease buildbots take 3

James Molloy via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 18 04:08:26 PST 2015


Author: jamesm
Date: Wed Nov 18 06:08:24 2015
New Revision: 253454

URL: http://llvm.org/viewvc/llvm-project?rev=253454&view=rev
Log:
[LTO] Appease buildbots take 3

This time I've found a linux box and checked it there. This test now passes.

Because I'd introduced an undefined reference in @bar, gold now returns an error. This doesn't matter for the test itself, because it also emits the remarks the test is checking for. But it does cause LIT to notice a nonzero return code which it faults on.

Modified:
    llvm/trunk/test/tools/gold/X86/remarks.ll

Modified: llvm/trunk/test/tools/gold/X86/remarks.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/gold/X86/remarks.ll?rev=253454&r1=253453&r2=253454&view=diff
==============================================================================
--- llvm/trunk/test/tools/gold/X86/remarks.ll (original)
+++ llvm/trunk/test/tools/gold/X86/remarks.ll Wed Nov 18 06:08:24 2015
@@ -1,9 +1,9 @@
 ; RUN: llvm-as %s -o %t.o
 
-; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold.so \
+; RUN: not %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold.so \
 ; RUN:    -plugin-opt=-pass-remarks=inline %t.o -o %t2.o 2>&1 | FileCheck %s
 
-; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold.so \
+; RUN: not %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold.so \
 ; RUN:   %t.o -o %t2.o 2>&1 | FileCheck -allow-empty --check-prefix=NO-REMARK %s
 
 




More information about the llvm-commits mailing list