]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix bug in wxStringOutputStream unit test.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 24 Jan 2010 11:33:24 +0000 (11:33 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 24 Jan 2010 11:33:24 +0000 (11:33 +0000)
We wrote an extra NUL byte to the stream and, unsurprisingly, contents of its
buffer didn't match the original string resulting in the test failure.

Also get rid of a #if wxUSE_UNICODE.

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

tests/streams/sstream.cpp

index 266360911ec13e4c6ffe47af1252596f4c3a70f7..4e58062e8419088a8a8808c162aad3d9ca0df6f9 100644 (file)
@@ -106,14 +106,8 @@ void strStream::CheckString(const wxString& text)
 {
     wxStringOutputStream sos;
 
-    size_t len = text.length();
-#if wxUSE_UNICODE
-    const wxCharBuffer textMB(wxConvLibc.cWC2MB(text.wc_str(), len + 1, &len));
-#else
-    const char *textMB = text.c_str();
-#endif
-
-    sos.Write(textMB, len);
+    const wxScopedCharBuffer buf(text.mb_str());
+    sos.Write(buf, buf.length());
 
     CPPUNIT_ASSERT_EQUAL( text, sos.GetString() );
 }