From 01baea3c2c078285f745357f9b1d1183c8895445 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 30 Apr 2010 17:42:30 +0000 Subject: [PATCH] Add -o /dev/null to some tests which don't care about their output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102722 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/FrontendC++/2009-07-16-Using.cpp | 2 +- test/FrontendC++/2009-10-27-crash.cpp | 2 +- test/FrontendC/2009-01-20-k8.c | 2 +- test/FrontendC/2009-01-21-InvalidIterator.c | 2 +- test/FrontendC/2009-04-22-UnknownSize.c | 2 +- test/FrontendC/2009-06-14-HighlyAligned.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/FrontendC++/2009-07-16-Using.cpp b/test/FrontendC++/2009-07-16-Using.cpp index 1acadf64212..c0e031424ac 100644 --- a/test/FrontendC++/2009-07-16-Using.cpp +++ b/test/FrontendC++/2009-07-16-Using.cpp @@ -1,4 +1,4 @@ -// RUN: %llvmgxx %s -S +// RUN: %llvmgxx %s -S -o /dev/null namespace A { typedef int B; diff --git a/test/FrontendC++/2009-10-27-crash.cpp b/test/FrontendC++/2009-10-27-crash.cpp index 5641aa42050..21d0064c687 100644 --- a/test/FrontendC++/2009-10-27-crash.cpp +++ b/test/FrontendC++/2009-10-27-crash.cpp @@ -1,4 +1,4 @@ -// RUN: %llvmgxx -emit-llvm -S %s +// RUN: %llvmgxx -emit-llvm -S %s -o /dev/null // Radar 7328944 typedef struct diff --git a/test/FrontendC/2009-01-20-k8.c b/test/FrontendC/2009-01-20-k8.c index d28302b4ce8..2cd15387390 100644 --- a/test/FrontendC/2009-01-20-k8.c +++ b/test/FrontendC/2009-01-20-k8.c @@ -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; diff --git a/test/FrontendC/2009-01-21-InvalidIterator.c b/test/FrontendC/2009-01-21-InvalidIterator.c index 310ea3bfa17..6ac61f8a748 100644 --- a/test/FrontendC/2009-01-21-InvalidIterator.c +++ b/test/FrontendC/2009-01-21-InvalidIterator.c @@ -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; diff --git a/test/FrontendC/2009-04-22-UnknownSize.c b/test/FrontendC/2009-04-22-UnknownSize.c index 2b90c91fe22..7db9c0730c8 100644 --- a/test/FrontendC/2009-04-22-UnknownSize.c +++ b/test/FrontendC/2009-04-22-UnknownSize.c @@ -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; diff --git a/test/FrontendC/2009-06-14-HighlyAligned.c b/test/FrontendC/2009-06-14-HighlyAligned.c index 4678b75b6da..227db74f47a 100644 --- a/test/FrontendC/2009-06-14-HighlyAligned.c +++ b/test/FrontendC/2009-06-14-HighlyAligned.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc %s -S +// RUN: %llvmgcc %s -S -o /dev/null // PR4332 static int highly_aligned __attribute__((aligned(4096))); -- 2.11.0