]> granicus.if.org Git - clang/commitdiff
Disable this test on Windows; it crashes and popup an dialog on each lit test run.
authorFrancois Pichet <pichet2000@gmail.com>
Mon, 20 Dec 2010 04:14:03 +0000 (04:14 +0000)
committerFrancois Pichet <pichet2000@gmail.com>
Mon, 20 Dec 2010 04:14:03 +0000 (04:14 +0000)
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

index 51eb0e371527afcb9822dff01931beda265a76d4..c51221cd7e682ed5237d1db4d6f8e4f0c69d1097 100644 (file)
@@ -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