Replace unused output filenames with /dev/null in tests
authorFangrui Song <maskray@google.com>
Mon, 2 Jul 2018 18:16:44 +0000 (18:16 +0000)
committerFangrui Song <maskray@google.com>
Mon, 2 Jul 2018 18:16:44 +0000 (18:16 +0000)
Similar to rLLD336129

llvm-svn: 336131

llvm/test/MC/AArch64/ldr-pseudo-obj-errors.s
llvm/test/MC/ELF/dwo-restrict-relocs.s
llvm/test/tools/dsymutil/ARM/fat-arch-name.test
llvm/test/tools/dsymutil/ARM/fat-threading.test
llvm/test/tools/llvm-mc/basic.test
llvm/test/tools/llvm-mca/X86/in-order-cpu.s
llvm/test/tools/llvm-mca/X86/invalid-cpu.s
llvm/test/tools/llvm-mca/X86/invalid-empty-file.s
llvm/test/tools/llvm-mca/invalid_input_file_name.test

index d851917..b486abe 100644 (file)
@@ -1,4 +1,4 @@
-//RUN: not llvm-mc -triple=aarch64-linux -filetype=obj %s -o %t1 2> %t2
+//RUN: not llvm-mc -triple=aarch64-linux -filetype=obj %s -o /dev/null 2> %t2
 //RUN: cat %t2 | FileCheck %s
 
 //These tests look for errors that should be reported for invalid object layout
index b624d40..1bc1510 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o %t1 -split-dwarf-file %t2 2>&1 | FileCheck %s
+// RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o /dev/null -split-dwarf-file %t2 2>&1 | FileCheck %s
 
 // CHECK: error: A relocation may not refer to a dwo section
 .quad .foo.dwo
index 14d33d0..be12aff 100644 (file)
@@ -1,5 +1,5 @@
 # REQUIRES: object-emission
-# RUN: dsymutil -no-output %p/../Inputs/fat-test.arm.dylib -o %t.dSYM -verbose 2>&1 | FileCheck %s
+# RUN: dsymutil -no-output %p/../Inputs/fat-test.arm.dylib -o /dev/null -verbose 2>&1 | FileCheck %s
 
 # We detect thumb triples from the binaries, because those are the only ones
 # that are guaranteed to be able to generate a Target instance (for example
index a723812..850979a 100644 (file)
@@ -1,4 +1,4 @@
 # REQUIRES: object-emission
 # By default, dsymutil spawns one thread per architecture and this test just
 # ensures that things don't break when processing multiple archs.
-# RUN: dsymutil -no-output %p/../Inputs/fat-test.arm.dylib -o %t.brief.dSYM 2>&1
+# RUN: dsymutil -no-output %p/../Inputs/fat-test.arm.dylib -o /dev/null 2>&1
index edac652..c7480dc 100644 (file)
@@ -1,3 +1,3 @@
-# RUN: not llvm-mc %t.blah -o %t2 2>&1 | FileCheck --check-prefix=ENOENT %s
+# RUN: not llvm-mc %t.blah -o /dev/null 2>&1 | FileCheck --check-prefix=ENOENT %s
 
 # ENOENT: {{.*}}.blah: {{[Nn]}}o such file or directory
index 7c58b3d..483a4e2 100644 (file)
@@ -1,3 +1,3 @@
-# RUN: not llvm-mca %s -mtriple=x86_64-unknown-unknown -mcpu=atom -o %t1 2>&1 | FileCheck %s
+# RUN: not llvm-mca %s -mtriple=x86_64-unknown-unknown -mcpu=atom -o /dev/null 2>&1 | FileCheck %s
 
 # CHECK: error: please specify an out-of-order cpu. 'atom' is an in-order cpu.
index 4298e71..7457f8c 100644 (file)
@@ -1,3 +1,3 @@
-# RUN: not llvm-mca %s -mtriple=x86_64-unknown-unknown -mcpu=foo -o %t1 2>&1 | FileCheck %s
+# RUN: not llvm-mca %s -mtriple=x86_64-unknown-unknown -mcpu=foo -o /dev/null 2>&1 | FileCheck %s
 
 # CHECK: 'foo' is not a recognized processor for this target (ignoring processor)
index 46b12d4..c727d7c 100644 (file)
@@ -1,3 +1,3 @@
-# RUN: not llvm-mca %s -mtriple=x86_64-unknown-unknown -mcpu=btver2 -o %t1 2>&1 | FileCheck %s
+# RUN: not llvm-mca %s -mtriple=x86_64-unknown-unknown -mcpu=btver2 -o /dev/null 2>&1 | FileCheck %s
 
 # CHECK: error: no assembly instructions found.
index 2d2d30a..27fa972 100644 (file)
@@ -1,3 +1,3 @@
-# RUN: not llvm-mca %t.blah -o %t2 2>&1 | FileCheck --check-prefix=ENOENT %s
+# RUN: not llvm-mca %t.blah -o /dev/null 2>&1 | FileCheck --check-prefix=ENOENT %s
 
 # ENOENT: {{.*}}.blah: {{[Nn]}}o such file or directory