diff options
author | Jaromir Wysoglad | 2019-08-14 02:20:02 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-08-24 18:12:45 +0300 |
commit | 5fcd14fbea7b77b9bd91b5324fd377478910f873 (patch) | |
tree | 6e0e1247d4a71d56736ae70dc5b21ef5c257e7e2 | |
parent | 3e4b5c7d3b75c5ff59e68c29296b57ac2b7f607d (diff) | |
download | scummvm-rg350-5fcd14fbea7b77b9bd91b5324fd377478910f873.tar.gz scummvm-rg350-5fcd14fbea7b77b9bd91b5324fd377478910f873.tar.bz2 scummvm-rg350-5fcd14fbea7b77b9bd91b5324fd377478910f873.zip |
TEST: Remove tests for ascii transliteration
This can be handled differently by each conversion method.
The "Šáleček" could be transliterated as "Salecek" or as
"S'alecek" or maybe even differently.
-rw-r--r-- | test/common/encoding.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/common/encoding.h b/test/common/encoding.h index ff445a380a..9b848fa4bc 100644 --- a/test/common/encoding.h +++ b/test/common/encoding.h @@ -346,16 +346,6 @@ class EncodingTestSuite : public CxxTest::TestSuite { TS_ASSERT(result != NULL); TS_ASSERT_SAME_DATA(result, iso_8859_2, 8); free(result); - - result = Common::Encoding::convert("ASCII", "UTF-8", (char *)utf8_2, 11); - TS_ASSERT(result != NULL); - TS_ASSERT_SAME_DATA(result, "Salecek", 8); - free(result); - - result = Common::Encoding::convert("ASCII", "iso-8859-2", (char *)iso_8859_2, 7); - TS_ASSERT(result != NULL); - TS_ASSERT_SAME_DATA(result, "Salecek", 8); - free(result); } }; #endif |