]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix test compilation under OS X.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 13 Sep 2009 12:26:03 +0000 (12:26 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 13 Sep 2009 12:26:03 +0000 (12:26 +0000)
wxFileOffset and ssize_t are not the same type under this platform so using
CPPUNIT_ASSERT_EQUAL() with the arguments of these types fails. Use ssize_t
instead of wxFileOffset to fix this.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61903 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/file/filetest.cpp

index dc3c28669193ea4ca868f595493980eefee37f60..33300577cb81ca286d25afd770847d0b668a8d18 100644 (file)
@@ -76,7 +76,7 @@ void FileTestCase::DoRoundTripTest(const wxMBConv& conv)
         wxFile fin(tf.GetName(), wxFile::read);
         CPPUNIT_ASSERT( fin.IsOpened() );
 
         wxFile fin(tf.GetName(), wxFile::read);
         CPPUNIT_ASSERT( fin.IsOpened() );
 
-        const wxFileOffset len = fin.Length();
+        const ssize_t len = fin.Length();
         wxCharBuffer buf(len);
         CPPUNIT_ASSERT_EQUAL( len, fin.Read(buf.data(), len) );
 
         wxCharBuffer buf(len);
         CPPUNIT_ASSERT_EQUAL( len, fin.Read(buf.data(), len) );