Add -o /dev/null to some tests which don't care about their output.
authorDan Gohman <gohman@apple.com>
Fri, 30 Apr 2010 17:42:30 +0000 (17:42 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 30 Apr 2010 17:42:30 +0000 (17:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102722 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendC++/2009-07-16-Using.cpp
test/FrontendC++/2009-10-27-crash.cpp
test/FrontendC/2009-01-20-k8.c
test/FrontendC/2009-01-21-InvalidIterator.c
test/FrontendC/2009-04-22-UnknownSize.c
test/FrontendC/2009-06-14-HighlyAligned.c

index 1acadf642122ef9a37a79763522d0b4b68789ad2..c0e031424acbe87136e7fbebe4e732aab005c8f8 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %llvmgxx %s -S
+// RUN: %llvmgxx %s -S -o /dev/null
 
 namespace A {
   typedef int B;
index 5641aa420507a4c62e62e44cbc4febc8f9addda4..21d0064c687be7165e1544c79482704e7eaef5bb 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %llvmgxx -emit-llvm -S %s
+// RUN: %llvmgxx -emit-llvm -S %s -o /dev/null
 // Radar 7328944
 
 typedef struct
index d28302b4ce80137057cfe805faa4cf54b77a2f47..2cd15387390ccc4136833f5ca196fb56184dae66 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %llvmgcc %s -S -march=k8
+// RUN: %llvmgcc %s -S -march=k8 -o /dev/null
 // XFAIL: *
 // XTARGET: x86,i386,i686
 long double x;
index 310ea3bfa17b9ed33a5c848150835f0088b6b1ac..6ac61f8a748b96e57f1aac1c7c34e3a013d29d70 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %llvmgcc %s -S -g
+// RUN: %llvmgcc %s -S -g -o /dev/null
 
 typedef long unsigned int size_t;
 typedef unsigned short int uint16_t;
index 2b90c91fe22cd9d93d60534b763206e4911f040c..7db9c0730c806b898f1f375e9467aca77cce8772 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: not %llvmgcc -O1 %s -S |& grep {error: storage size}
+// RUN: not %llvmgcc -O1 %s -S -o /dev/null |& grep {error: storage size}
 // PR2958
 static struct foo s;
 struct foo *p = &s;
index 4678b75b6daf93a4f19db4f79e44df5f622abe3a..227db74f47a07d76df221da3f1a12d06ac192b91 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %llvmgcc %s -S
+// RUN: %llvmgcc %s -S -o /dev/null
 // PR4332
 
 static int highly_aligned __attribute__((aligned(4096)));