Re: [Mono-dev] Error Normalizing Arabic Strings

2009-09-18 Thread Atsushi Eno
This should be fixed now. Atsushi Eno On 2009/09/12 10:08, Atsushi Eno wrote: Hi Tom, Thanks. I'll have a look next week. I'm not passionate to fix every unicode normalization issue unless I can fully commit this area. .NET is not very excellent on Unicode compliant normalization (it

[Mono-dev] Error Normalizing Arabic Strings

2009-09-11 Thread Tom Philpot
I just discovered more Unicode Normalization Bugs in Mono SVN. using System; using System.Text; namespace Test { public class NormalizationTest_Arabic { public void TestNormalization() { char[] originalChars = new char [] { '\u064A', '\u064F', '\u0648', '\u0654',

Re: [Mono-dev] Error Normalizing Arabic Strings

2009-09-11 Thread Tom Philpot
I forgot to mention what happens. You get an unhandled exception. We're planning on writing a process that goes through and finds a bunch of these cases so we can submit a huge bug report of all the cases we know of where Mono differs from say ICU's normalization. ws1048:~ tom.philpot$ gmcs

Re: [Mono-dev] Error Normalizing Arabic Strings

2009-09-11 Thread Atsushi Eno
Hi Tom, Thanks. I'll have a look next week. I'm not passionate to fix every unicode normalization issue unless I can fully commit this area. .NET is not very excellent on Unicode compliant normalization (it fails much more than us according to normalization tests). Crashers like this are no