From 743d9ad3a4fb06f3ca1e32abdd648618fe1627b5 Mon Sep 17 00:00:00 2001 From: Francois Pichet Date: Mon, 20 Dec 2010 04:14:03 +0000 Subject: [PATCH] Disable this test on Windows; it crashes and popup an dialog on each lit test run. I have no idea how to fix it. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122227 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGenCXX/vtable-debug-info.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/CodeGenCXX/vtable-debug-info.cpp b/test/CodeGenCXX/vtable-debug-info.cpp index 51eb0e3715..c51221cd7e 100644 --- a/test/CodeGenCXX/vtable-debug-info.cpp +++ b/test/CodeGenCXX/vtable-debug-info.cpp @@ -1,6 +1,9 @@ // RUN: %clang -c -g %s -o /dev/null // Radar 8730409 +// FIXME: This test crashes on Windows. +#ifndef _WIN32 + class foo { public: #define x(a) virtual void v ## a (void) @@ -307,3 +310,5 @@ x(300); }; foo b; + +#endif -- 2.50.1