]> git.saurik.com Git - wxWidgets.git/commitdiff
remove the test of weak references classes size, it's implementation-dependent
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 16 Jan 2008 02:03:10 +0000 (02:03 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 16 Jan 2008 02:03:10 +0000 (02:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51231 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/weakref/weakref.cpp

index f2a9c79d04734107eeaa440e93137ea09b4d7128..2c0eea61be63b4f0199c6ebc4cbf21564a7d37c5 100644 (file)
@@ -226,15 +226,6 @@ void WeakRefTestCase::DeleteTest()
     wxEvtHandlerRef wre(peh);
     wxWeakRef<wxEvtHandler> wro(peh);
 
     wxEvtHandlerRef wre(peh);
     wxWeakRef<wxEvtHandler> wro(peh);
 
-    // test size of references (see that it has selected right base class)
-#ifdef HAVE_PARTIAL_SPECIALIZATION
-    CPPUNIT_ASSERT_EQUAL( sizeof(void*)*3, sizeof(wre) );
-    CPPUNIT_ASSERT_EQUAL( sizeof(void*)*4, sizeof(wro) );
-#else
-    CPPUNIT_ASSERT_EQUAL( sizeof(void*)*3, sizeof(wre) );
-    CPPUNIT_ASSERT_EQUAL( sizeof(void*)*3, sizeof(wro) );
-#endif
-
     CPPUNIT_ASSERT( wre.get() == peh );
     CPPUNIT_ASSERT( wro.get() == peh );
 
     CPPUNIT_ASSERT( wre.get() == peh );
     CPPUNIT_ASSERT( wro.get() == peh );