diff options
| author | Ted Kremenek <kremenek@apple.com> | 2012-07-16 21:17:01 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2012-07-16 21:17:01 +0000 |
| commit | cf74cef104b737cda45f3014d42814dc26423d05 (patch) | |
| tree | d64d87540ed75557cbc3c6f2a778a68580b026e3 | |
| parent | fb12a53d5dd2bf37ed4304a5b01cc67b88d4c26a (diff) | |
| download | bcm5719-llvm-cf74cef104b737cda45f3014d42814dc26423d05.tar.gz bcm5719-llvm-cf74cef104b737cda45f3014d42814dc26423d05.zip | |
This test appears to be passing on win32.
llvm-svn: 160320
| -rw-r--r-- | clang/test/Tooling/clang-ast-dump.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/clang/test/Tooling/clang-ast-dump.cpp b/clang/test/Tooling/clang-ast-dump.cpp index a22fffdfe24..c3417e0bd82 100644 --- a/clang/test/Tooling/clang-ast-dump.cpp +++ b/clang/test/Tooling/clang-ast-dump.cpp @@ -1,4 +1,6 @@ -// RUN: clang-ast-dump "%s" -f test_namespace::TheClass::theMethod -- -c 2>&1|FileCheck %s +// RUN: rm -f %t +// RUN: clang-ast-dump "%s" -f test_namespace::TheClass::theMethod -- -c > %t 2>&1 +// RUN: FileCheck --input-file=%t %s // CHECK: <CXXMethod ptr="0x{{[0-9a-f]+}}" name="theMethod" prototype="true"> // CHECK: <ParmVar ptr="0x{{[0-9a-f]+}}" name="x" initstyle="c"> @@ -16,6 +18,3 @@ public: }; } - -// FIXME: This is incompatible to -fms-compatibility. -// XFAIL: win32 |

