From 3b71176b1726b9f1d0bd4738a7720c99c49fe64a Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Mon, 16 Jul 2012 21:17:01 +0000 Subject: [PATCH] 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 --- test/Tooling/clang-ast-dump.cpp | 7 +++---- 1 file 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: // CHECK: @@ -16,6 +18,3 @@ public: }; } - -// FIXME: This is incompatible to -fms-compatibility. -// XFAIL: win32 -- 2.50.1