diff options
author | Fangrui Song <maskray@google.com> | 2018-07-02 17:48:23 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-07-02 17:48:23 +0000 |
commit | 40a9f2251b75012d1d9ce8f86a834ffef9edfb0f (patch) | |
tree | 23adea9c7e45135ce86cad1888d4762c9d5259a2 /lld/test/ELF/fatal-warnings.s | |
parent | b999d7413298bc8288e7f676b65ba1e74764c578 (diff) | |
download | bcm5719-llvm-40a9f2251b75012d1d9ce8f86a834ffef9edfb0f.tar.gz bcm5719-llvm-40a9f2251b75012d1d9ce8f86a834ffef9edfb0f.zip |
[ELF] Replace unused output filenames with /dev/null in tests
Post commit review at rLLD335992
llvm-svn: 336129
Diffstat (limited to 'lld/test/ELF/fatal-warnings.s')
-rw-r--r-- | lld/test/ELF/fatal-warnings.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/test/ELF/fatal-warnings.s b/lld/test/ELF/fatal-warnings.s index 0bc2a2b4447..51f2864a059 100644 --- a/lld/test/ELF/fatal-warnings.s +++ b/lld/test/ELF/fatal-warnings.s @@ -2,11 +2,11 @@ # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t1.o # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/warn-common.s -o %t2.o -# RUN: ld.lld --warn-common %t1.o %t2.o -o %t1.out 2>&1 | \ +# RUN: ld.lld --warn-common %t1.o %t2.o -o /dev/null 2>&1 | \ # RUN: FileCheck -check-prefix=ERR %s # ERR: multiple common of -# RUN: not ld.lld --warn-common --fatal-warnings %t1.o %t2.o -o %t2.out 2>&1 | \ +# RUN: not ld.lld --warn-common --fatal-warnings %t1.o %t2.o -o /dev/null 2>&1 | \ # RUN: FileCheck -check-prefix=ERR %s .globl _start |