From b225233dce312a2c28de04a8e5e4c04af5e76d98 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Fri, 6 Aug 2010 05:29:57 +0000 Subject: [PATCH] Prevent these tests from dirtying the tree with output files that aren't even used for the test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110431 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/asm-errors.c | 2 +- test/CodeGen/lineno-dbginfo.c | 3 +-- test/CodeGen/statements.c | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/test/CodeGen/asm-errors.c b/test/CodeGen/asm-errors.c index 7323e61b59..aea5cb247f 100644 --- a/test/CodeGen/asm-errors.c +++ b/test/CodeGen/asm-errors.c @@ -1,4 +1,4 @@ -// RUN: not %clang_cc1 -triple i386-apple-darwin10 -emit-obj %s > %t 2>&1 +// RUN: not %clang_cc1 -triple i386-apple-darwin10 -emit-obj %s -o /dev/null > %t 2>&1 // RUN: FileCheck %s < %t int test1(int X) { diff --git a/test/CodeGen/lineno-dbginfo.c b/test/CodeGen/lineno-dbginfo.c index c5c350f700..176d4157f3 100644 --- a/test/CodeGen/lineno-dbginfo.c +++ b/test/CodeGen/lineno-dbginfo.c @@ -1,6 +1,5 @@ // RUN: echo "#include " > %t.h -// RUN: %clang -S -save-temps -g -include %t.h %s -emit-llvm -o %t.ll +// RUN: %clang -S -g -include %t.h %s -emit-llvm -o %t.ll // RUN: grep "i32 5" %t.ll -// RUN: rm -f lineno-dbginfo.i // outer is at line number 5. int outer = 42; diff --git a/test/CodeGen/statements.c b/test/CodeGen/statements.c index 76983cc493..0ea0597835 100644 --- a/test/CodeGen/statements.c +++ b/test/CodeGen/statements.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -Wreturn-type %s -emit-llvm +// RUN: %clang_cc1 -Wreturn-type %s -emit-llvm -o /dev/null void test1(int x) { switch (x) { -- 2.40.0