X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/874dbd3a4a318bd7f34548b84cfe0aed9efa42d5..9b9a7c3331eda5d674e3f67eb0add00df1bcf907:/tests/strings/crt.cpp diff --git a/tests/strings/crt.cpp b/tests/strings/crt.cpp index e0623f6ac5..068a59748c 100644 --- a/tests/strings/crt.cpp +++ b/tests/strings/crt.cpp @@ -44,7 +44,9 @@ public: private: CPPUNIT_TEST_SUITE( CrtTestCase ); CPPUNIT_TEST( SetGetEnv ); +#if wxUSE_UNICODE CPPUNIT_TEST( Strchr ); +#endif // wxUSE_UNICODE CPPUNIT_TEST( Strcmp ); CPPUNIT_TEST( Strspn ); CPPUNIT_TEST( Strcspn ); @@ -53,7 +55,9 @@ private: CPPUNIT_TEST_SUITE_END(); void SetGetEnv(); +#if wxUSE_UNICODE void Strchr(); +#endif // wxUSE_UNICODE void Strcmp(); void Strspn(); void Strcspn(); @@ -66,7 +70,7 @@ private: // register in the unnamed registry so that these tests are run by default CPPUNIT_TEST_SUITE_REGISTRATION( CrtTestCase ); -// also include in it's own registry so that these tests can be run alone +// also include in its own registry so that these tests can be run alone CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( CrtTestCase, "CrtTestCase" ); void CrtTestCase::SetGetEnv() @@ -91,6 +95,7 @@ void CrtTestCase::SetGetEnv() #undef TESTVAR_NAME } +#if wxUSE_UNICODE void CrtTestCase::Strchr() { // test that searching for a wide character in a narrow string simply @@ -103,6 +108,7 @@ void CrtTestCase::Strchr() CPPUNIT_ASSERT( wxStrchr(wxString::FromUTF8(":-) == \xe2\x98\xba"), static_cast(smiley)) ); } +#endif // wxUSE_UNICODE void CrtTestCase::Strcmp() {