EWTS->Unicode for // now produces \u0f0e as it should.

This commit is contained in:
dchandler 2005-07-10 05:01:03 +00:00
parent 64625fd445
commit 33fc836e81
3 changed files with 21 additions and 12 deletions

View file

@ -676,7 +676,9 @@ public class EWTSTest extends TestCase {
ewts2uni_test(" ", "\u0F0B");
ewts2uni_test("*", "\u0F0C");
ewts2uni_test("/", "\u0F0D");
if (RUN_FAILING_TESTS) ewts2uni_test("//", "\u0F0E");
ewts2uni_test("//", "\u0F0E");
ewts2uni_test("////", "\u0F0E\u0f0e");
ewts2uni_test("/////", "\u0F0E\u0f0e\u0f0d");
ewts2uni_test(";", "\u0F0F");
ewts2uni_test("\\u0F10", "\u0F10");
ewts2uni_test("|", "\u0F11");