diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-12-15 22:01:24 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-12-15 22:01:24 +0000 |
commit | 80737ad5e0a67d6e3dd0a0ba48446344215a5fd5 (patch) | |
tree | 5b061a38a81f419235761572e9d857300ffffe20 /test/Lexer/has_feature_exceptions.cpp | |
parent | a7fa7cd3eaa5459dfb2d1495384ece9786f8434c (diff) |
Update tests to use %clang instead of 'clang', and forcibly disable use of '
clang ' or ' clang -cc1 ' or ' clang-cc ' in test lines (by substituting them to
garbage).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91460 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Lexer/has_feature_exceptions.cpp')
-rw-r--r-- | test/Lexer/has_feature_exceptions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Lexer/has_feature_exceptions.cpp b/test/Lexer/has_feature_exceptions.cpp index 231a6c56a4..cfd1efbf84 100644 --- a/test/Lexer/has_feature_exceptions.cpp +++ b/test/Lexer/has_feature_exceptions.cpp @@ -1,5 +1,5 @@ -// RUN: clang -E -fexceptions %s -o - | FileCheck --check-prefix=CHECK-EXCEPTIONS %s -// RUN: clang -E -fno-exceptions %s -o - | FileCheck --check-prefix=CHECK-NO-EXCEPTIONS %s +// RUN: %clang -E -fexceptions %s -o - | FileCheck --check-prefix=CHECK-EXCEPTIONS %s +// RUN: %clang -E -fno-exceptions %s -o - | FileCheck --check-prefix=CHECK-NO-EXCEPTIONS %s #if __has_feature(cxx_exceptions) int foo(); |