[cfe-commits] r160320 - /cfe/trunk/test/Tooling/clang-ast-dump.cpp

Ted Kremenek kremenek at apple.com
Mon Jul 16 14:17:01 PDT 2012


Author: kremenek
Date: Mon Jul 16 16:17:01 2012
New Revision: 160320

URL: http://llvm.org/viewvc/llvm-project?rev=160320&view=rev
Log:
This test appears to be passing on win32.

Modified:
    cfe/trunk/test/Tooling/clang-ast-dump.cpp

Modified: cfe/trunk/test/Tooling/clang-ast-dump.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Tooling/clang-ast-dump.cpp?rev=160320&r1=160319&r2=160320&view=diff
==============================================================================
--- cfe/trunk/test/Tooling/clang-ast-dump.cpp (original)
+++ cfe/trunk/test/Tooling/clang-ast-dump.cpp Mon Jul 16 16:17:01 2012
@@ -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





More information about the cfe-commits mailing list