X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dddc2bc23ce15ef03847f173c464fc5005a4278c..cd15bcaf50ead53ccf9d50965312f0dc754affb4:/tests/any/anytest.cpp?ds=inline diff --git a/tests/any/anytest.cpp b/tests/any/anytest.cpp index 0d86acaf73..29dd5170a9 100644 --- a/tests/any/anytest.cpp +++ b/tests/any/anytest.cpp @@ -306,14 +306,6 @@ void wxAnyTestCase::Null() void wxAnyTestCase::GetAs() { - // FIXME: Parts of this test result in heap corruption in wxOSX/PPC builds - // for some unknown reason, disable them to at least allow running - // the other tests. -#if defined(__WXOSX__) && defined(__POWERPC__) - #warning "Disabling some tests under PPC, please consider debugging them." - #define wxDONT_TEST -#endif // OSX/PPC - // // Test dynamic conversion bool res; @@ -364,12 +356,9 @@ void wxAnyTestCase::GetAs() // should not work. CPPUNIT_ASSERT(!m_anyStringString1.GetAs(&l)); CPPUNIT_ASSERT(!m_anyStringString1.GetAs(&ul)); -#ifndef wxDONT_TEST CPPUNIT_ASSERT(!m_anyStringString1.GetAs(&f)); -#endif // !wxDONT_TEST CPPUNIT_ASSERT(!m_anyStringString1.GetAs(&b)); -#ifndef wxDONT_TEST // Let's test some other conversions from string that should work. wxAny anyString; @@ -403,7 +392,6 @@ void wxAnyTestCase::GetAs() CPPUNIT_ASSERT(res); CPPUNIT_ASSERT(s == "true"); CPPUNIT_ASSERT(!m_anyBool1.GetAs(&f)); -#endif // !wxDONT_TEST // Conversions from floating point type res = m_anyDoubleDouble1.GetAs(&l); @@ -415,7 +403,7 @@ void wxAnyTestCase::GetAs() res = m_anyDoubleDouble1.GetAs(&s); CPPUNIT_ASSERT(res); double d2; - res = s.ToDouble(&d2); + res = s.ToCDouble(&d2); CPPUNIT_ASSERT(res); CPPUNIT_ASSERT_DOUBLES_EQUAL(d2, TEST_FLOAT_CONST, FEQ_DELTA); }