diff options
author | John Wiegley <johnw@boostpro.com> | 2011-04-28 01:09:13 +0000 |
---|---|---|
committer | John Wiegley <johnw@boostpro.com> | 2011-04-28 01:09:13 +0000 |
commit | 0931797d68b42c0390bb57f5e5ac265ddbda4b81 (patch) | |
tree | 499392babd0f3386cbab363251b92117a46e8f25 | |
parent | 28bbe4b8acc338476fe0825769b41fb32b423c72 (diff) |
Removed test that depended on ast-test
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130367 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/AST/__try.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/test/AST/__try.c b/test/AST/__try.c deleted file mode 100644 index 6170adba70..0000000000 --- a/test/AST/__try.c +++ /dev/null @@ -1,28 +0,0 @@ -// RUN: %ast_test -fborland-extensions %s - -#define JOIN2(x,y) x ## y -#define JOIN(x,y) JOIN2(x,y) -#define TEST2(name) JOIN(name,__LINE__) -#define TEST TEST2(test) -typedef int DWORD; - -DWORD FilterExpression(); - -void TEST() { - __try // expected-stmt-class-name{{SEHTryStmt}} - { // expected-stmt-class-name{{CompoundStmt}} - } - __except ( FilterExpression() ) // expected-stmt-class-name{{SEHExceptStmt}} expected-stmt-class-name{{CallExpr}} \ - // expected-expr-type{{DWORD}} - { // expected-stmt-class-name{{CompoundStmt}} - } -} - -void TEST() { - __try // expected-stmt-class-name{{SEHTryStmt}} - { // expected-stmt-class-name{{CompoundStmt}} - } - __finally // expected-stmt-class-name{{SEHFinallyStmt}} - { // expected-stmt-class-name{{CompoundStmt}} - } -} |