This is an automated email from the ASF dual-hosted git repository. damjan pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit daf711bf7204b9f3958c09907cb8a37809369d54 Author: Damjan Jovanovic <[email protected]> AuthorDate: Fri May 9 03:05:35 2025 +0200 Document that XcharacterClassification._toLower() has bug #87590. Patch by: me --- test/testuno/source/api/i18n/XCharacterClassificationTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/testuno/source/api/i18n/XCharacterClassificationTest.java b/test/testuno/source/api/i18n/XCharacterClassificationTest.java index 329daf364d..532831ce80 100644 --- a/test/testuno/source/api/i18n/XCharacterClassificationTest.java +++ b/test/testuno/source/api/i18n/XCharacterClassificationTest.java @@ -35,6 +35,7 @@ import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; import org.openoffice.test.uno.UnoApp; @@ -167,6 +168,7 @@ public class XCharacterClassificationTest { * a string that is returned by String.toLowerCase() for all locales. */ @Test + @Ignore("Bug #87590 Incorrect casing for U+026A, U+0268, U+0197...") public void _toLower() { boolean res = true; char[] characters = new char[]{586,65,97,498,721,4588,772,8413,3404};
