From: Vadim Zeitlin Date: Wed, 8 May 2013 23:18:12 +0000 (+0000) Subject: Another attempt to isolate memory corrupting wxAny test. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4c45335cd24e8d3183537807bfeb5f286d945d6f Another attempt to isolate memory corrupting wxAny test. We now know it's either As() or GetAs() (or both). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73953 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/any/anytest.cpp b/tests/any/anytest.cpp index bd0dc2868f..057290143b 100644 --- a/tests/any/anytest.cpp +++ b/tests/any/anytest.cpp @@ -35,11 +35,11 @@ private: CPPUNIT_TEST_SUITE( wxAnyTestCase ); CPPUNIT_TEST( CheckType ); CPPUNIT_TEST( Equality ); + CPPUNIT_TEST( As ); // FIXME: One of these tests might result in heap corruption under PPC // OS X, disable them to at least allow the subsequent tests to // run as otherwise the test program just crashes. #ifndef __WXOSX__ - CPPUNIT_TEST( As ); CPPUNIT_TEST( GetAs ); CPPUNIT_TEST( Null ); CPPUNIT_TEST( wxVariantConversions );