diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-08-06 05:29:57 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-08-06 05:29:57 +0000 |
commit | b225233dce312a2c28de04a8e5e4c04af5e76d98 (patch) | |
tree | 51eeec4e451e237e0365a6acb81ab42130aa96e6 /test/CodeGen/asm-errors.c | |
parent | 68df730435f984cb61a41a98ffb5ab9b37490b7a (diff) |
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
Diffstat (limited to 'test/CodeGen/asm-errors.c')
-rw-r--r-- | test/CodeGen/asm-errors.c | 2 |
1 files changed, 1 insertions, 1 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) { |