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
diff --git a/test/Tooling/clang-ast-dump.cpp b/test/Tooling/clang-ast-dump.cpp
index a22fffd..c3417e0 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 @@
 };
 
 }
-
-// FIXME: This is incompatible to -fms-compatibility.
-// XFAIL: win32