From: Francois Pichet Date: Mon, 20 Dec 2010 04:14:03 +0000 (+0000) Subject: Disable this test on Windows; it crashes and popup an dialog on each lit test run. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=743d9ad3a4fb06f3ca1e32abdd648618fe1627b5;p=clang 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 --- 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