[lld] r364999 - [lld] Use -o /dev/null in test when output is not needed.

Sam Clegg via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 2 19:41:01 PDT 2019


Author: sbc
Date: Tue Jul  2 19:41:00 2019
New Revision: 364999

URL: http://llvm.org/viewvc/llvm-project?rev=364999&view=rev
Log:
[lld] Use -o /dev/null in test when output is not needed.

Feedback nit from rL364998

Modified:
    lld/trunk/test/ELF/archive-no-index.s

Modified: lld/trunk/test/ELF/archive-no-index.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/archive-no-index.s?rev=364999&r1=364998&r2=364999&view=diff
==============================================================================
--- lld/trunk/test/ELF/archive-no-index.s (original)
+++ lld/trunk/test/ELF/archive-no-index.s Tue Jul  2 19:41:00 2019
@@ -1,7 +1,7 @@
 # REQUIRES: x86
 # Tests error on archive file without a symbol table
 # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux -o %t.o %s
-# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux -o %t.archive.o %S/Inputs/archive.s
+# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux -o /dev/null %S/Inputs/archive.s
 # RUN: rm -f %t.a
 # RUN: llvm-ar crS %t.a %t.archive.o
 




More information about the llvm-commits mailing list