diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-05 07:19:32 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-05 07:19:32 +0000 |
commit | 822eeb581097aeecf0f71c7bde0dc454b242f9ee (patch) | |
tree | d1ccd152bc9e5452f2cfe04feb41a8d6d8b1d897 | |
parent | 38f1d680b41f8bb8deb72899c7a45aebaadd0e52 (diff) |
Stop cluttering the test directory with temporary files.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139114 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/misc-ps-cxx0x.cpp | 2 | ||||
-rw-r--r-- | test/Driver/le32-unknown-nacl.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Analysis/misc-ps-cxx0x.cpp b/test/Analysis/misc-ps-cxx0x.cpp index f21e82c4bc..598fea2bb7 100644 --- a/test/Analysis/misc-ps-cxx0x.cpp +++ b/test/Analysis/misc-ps-cxx0x.cpp @@ -1,4 +1,4 @@ -// RUN: %clang --analyze -std=c++0x %s -Xclang -verify +// RUN: %clang --analyze -std=c++0x %s -Xclang -verify -o /dev/null void test_static_assert() { static_assert(sizeof(void *) == sizeof(void*), "test_static_assert"); diff --git a/test/Driver/le32-unknown-nacl.cpp b/test/Driver/le32-unknown-nacl.cpp index 7e702513d9..7cd217574f 100644 --- a/test/Driver/le32-unknown-nacl.cpp +++ b/test/Driver/le32-unknown-nacl.cpp @@ -1,4 +1,4 @@ -// RUN: %clang -ccc-host-triple le32-unknown-nacl -ccc-echo %s -emit-llvm -c 2>&1 | FileCheck %s -check-prefix=ECHO +// RUN: %clang -ccc-host-triple le32-unknown-nacl -ccc-echo %s -emit-llvm-only -c 2>&1 | FileCheck %s -check-prefix=ECHO // RUN: %clang -ccc-host-triple le32-unknown-nacl %s -emit-llvm -S -c -o - | FileCheck %s // RUN: %clang -ccc-host-triple le32-unknown-nacl %s -emit-llvm -S -c -pthread -o - | FileCheck %s -check-prefix=THREADS |