[cfe-commits] r122227 - /cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp

Francois Pichet pichet2000 at gmail.com
Sun Dec 19 20:14:03 PST 2010


Author: fpichet
Date: Sun Dec 19 22:14:03 2010
New Revision: 122227

URL: http://llvm.org/viewvc/llvm-project?rev=122227&view=rev
Log:
Disable this test on Windows; it crashes and popup an dialog on each lit test run.
I have no idea how to fix it.

Modified:
    cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp

Modified: cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp?rev=122227&r1=122226&r2=122227&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/vtable-debug-info.cpp Sun Dec 19 22:14:03 2010
@@ -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 @@
 };
 
 foo b;
+
+#endif





More information about the cfe-commits mailing list