diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2016-09-20 17:02:38 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2016-09-20 17:02:38 +0000 |
| commit | c8e7c98b66051cc0a93f4efaa3410da3db059d31 (patch) | |
| tree | 13598156ce624d56774773f310645f05e5710a93 | |
| parent | 8f41f33f450046eaecc85567d2aff58f999606d8 (diff) | |
| download | bcm5719-llvm-c8e7c98b66051cc0a93f4efaa3410da3db059d31.tar.gz bcm5719-llvm-c8e7c98b66051cc0a93f4efaa3410da3db059d31.zip | |
Redirect stderr to /dev/null. NFC.
Makes the error output less confusing when this test fails.
llvm-svn: 281985
| -rw-r--r-- | lld/test/ELF/linkerscript/linkerscript.s | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lld/test/ELF/linkerscript/linkerscript.s b/lld/test/ELF/linkerscript/linkerscript.s index 4ee7416a4b8..29e5428e734 100644 --- a/lld/test/ELF/linkerscript/linkerscript.s +++ b/lld/test/ELF/linkerscript/linkerscript.s @@ -25,29 +25,29 @@ # RUN: llvm-readobj %t2 > /dev/null # RUN: echo "GROUP(\"%t\" libxyz.a )" > %t.script -# RUN: not ld.lld -o %t2 %t.script +# RUN: not ld.lld -o %t2 %t.script 2>/dev/null # RUN: ld.lld -o %t2 %t.script -L%t.dir # RUN: llvm-readobj %t2 > /dev/null # RUN: echo "GROUP(\"%t\" =libxyz.a )" > %t.script -# RUN: not ld.lld -o %t2 %t.script +# RUN: not ld.lld -o %t2 %t.script 2>/dev/null # RUN: ld.lld -o %t2 %t.script --sysroot=%t.dir # RUN: llvm-readobj %t2 > /dev/null # RUN: echo "GROUP(\"%t\" -lxyz )" > %t.script -# RUN: not ld.lld -o %t2 %t.script +# RUN: not ld.lld -o %t2 %t.script 2>/dev/null # RUN: ld.lld -o %t2 %t.script -L%t.dir # RUN: llvm-readobj %t2 > /dev/null # RUN: echo "GROUP(\"%t\" libxyz.a )" > %t.script -# RUN: not ld.lld -o %t2 %t.script +# RUN: not ld.lld -o %t2 %t.script 2>/dev/null # RUN: ld.lld -o %t2 %t.script -L%t.dir # RUN: llvm-readobj %t2 > /dev/null # RUN: echo "GROUP(\"%t\" /libxyz.a )" > %t.script # RUN: echo "GROUP(\"%t\" /libxyz.a )" > %t.dir/xyz.script -# RUN: not ld.lld -o %t2 %t.script -# RUN: not ld.lld -o %t2 %t.script --sysroot=%t.dir +# RUN: not ld.lld -o %t2 %t.script 2>/dev/null +# RUN: not ld.lld -o %t2 %t.script --sysroot=%t.dir 2>/dev/null # RUN: ld.lld -o %t2 %t.dir/xyz.script --sysroot=%t.dir # RUN: llvm-readobj %t2 > /dev/null |

