aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2012-07-16 21:17:01 +0000
committerTed Kremenek <kremenek@apple.com>2012-07-16 21:17:01 +0000
commit3b71176b1726b9f1d0bd4738a7720c99c49fe64a (patch)
tree8d9e09089e08c9d9de868cc8e1ffb1b6dc5ddc2d
parent6f977c3e7918f9a668164f3ce27f1baa9557eb82 (diff)
This test appears to be passing on win32.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160320 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Tooling/clang-ast-dump.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/Tooling/clang-ast-dump.cpp b/test/Tooling/clang-ast-dump.cpp
index a22fffdfe2..c3417e0bd8 100644
--- a/test/Tooling/clang-ast-dump.cpp
+++ b/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