]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/textfile/textfiletest.cpp
use wxHAVE_U_ESCAPE to accomodate old compilers
[wxWidgets.git] / tests / textfile / textfiletest.cpp
index e451a87d8390f644cb1cedd1dce4b810c6a8532c..ce8bc49d24ad97ece0e23948dd4a2ee4fc6957be 100644 (file)
@@ -171,9 +171,11 @@ void TextFileTestCase::ReadUTF8()
     CPPUNIT_ASSERT_EQUAL( 2u, f.GetLineCount() );
     CPPUNIT_ASSERT_EQUAL( wxTextFileType_Unix, f.GetLineType(0) );
     CPPUNIT_ASSERT_EQUAL( wxTextFileType_None, f.GetLineType(1) );
+#if wxHAVE_U_ESCAPE
     CPPUNIT_ASSERT_EQUAL( wxString(L"\u041f"), f.GetFirstLine() );
     CPPUNIT_ASSERT_EQUAL( wxString(L"\u0440\u0438\u0432\u0435\u0442"),
                           f.GetLastLine() );
+#endif // wxHAVE_U_ESCAPE
 }
 
 void TextFileTestCase::ReadUTF16()
@@ -189,9 +191,12 @@ void TextFileTestCase::ReadUTF16()
     CPPUNIT_ASSERT_EQUAL( 2u, f.GetLineCount() );
     CPPUNIT_ASSERT_EQUAL( wxTextFileType_Dos, f.GetLineType(0) );
     CPPUNIT_ASSERT_EQUAL( wxTextFileType_None, f.GetLineType(1) );
+
+#if wxHAVE_U_ESCAPE
     CPPUNIT_ASSERT_EQUAL( wxString(L"\u041f"), f.GetFirstLine() );
     CPPUNIT_ASSERT_EQUAL( wxString(L"\u0440\u0438\u0432\u0435\u0442"),
                           f.GetLastLine() );
+#endif // wxHAVE_U_ESCAPE
 }
 
 #endif // wxUSE_UNICODE