diff options
| author | James Molloy <james.molloy@arm.com> | 2015-11-18 12:08:24 +0000 |
|---|---|---|
| committer | James Molloy <james.molloy@arm.com> | 2015-11-18 12:08:24 +0000 |
| commit | ea3bb626d434b950985fc1dccdd3f1f4099fbc5b (patch) | |
| tree | 221dc1aab09a8be62ed8fa174cf166388ae2522b /llvm/test/tools | |
| parent | ec9698a8c878df03e87e3c0c98abe0e913e179de (diff) | |
| download | bcm5719-llvm-ea3bb626d434b950985fc1dccdd3f1f4099fbc5b.tar.gz bcm5719-llvm-ea3bb626d434b950985fc1dccdd3f1f4099fbc5b.zip | |
[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.
llvm-svn: 253454
Diffstat (limited to 'llvm/test/tools')
| -rw-r--r-- | llvm/test/tools/gold/X86/remarks.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/tools/gold/X86/remarks.ll b/llvm/test/tools/gold/X86/remarks.ll index d50afbfe6bb..51bd121cebc 100644 --- a/llvm/test/tools/gold/X86/remarks.ll +++ b/llvm/test/tools/gold/X86/remarks.ll @@ -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 |

