The cyrillic characters used in the CaseChanges() test have different values

on different platforms depending on the cyrillic character set used. So try
generating these from the Unicode instead of using fixed values.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37613 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell 2006-02-15 21:16:45 +00:00
parent 0c09451870
commit b26ed94e4f

View File

@ -459,8 +459,11 @@ void StringTestCase::CaseChanges()
if ( locRu.IsOk() )
{
// try upper casing 8bit strings
wxString sUpper("\xdf"),
sLower("\xff");
const wchar_t capital_ya[] = { 0x42f, 0 },
small_ya[] = { 0x44f, 0 };
wxString sUpper(wxConvLibc.cWC2MB(capital_ya)),
sLower(wxConvLibc.cWC2MB(small_ya));
CPPUNIT_ASSERT( sUpper.Lower() == sLower );
CPPUNIT_ASSERT( sLower.Upper() == sUpper );