Revision: 6384 Author: [email protected] Date: Thu Oct 15 12:17:51 2009 Log: Disable tests of unpaired surrogates, since the IE and Safari plugins at least seem to have issues, and HtmlUnit did before them.
We need to decide if we want to specify the behavior here or just leave it as undefined. Patch by: jat Review by: jlabanca (verbal) http://code.google.com/p/google-web-toolkit/source/detail?r=6384 Modified: /trunk/user/test/com/google/gwt/user/client/rpc/UnicodeEscapingTest.java ======================================= --- /trunk/user/test/com/google/gwt/user/client/rpc/UnicodeEscapingTest.java Tue Oct 13 16:57:19 2009 +++ /trunk/user/test/com/google/gwt/user/client/rpc/UnicodeEscapingTest.java Thu Oct 15 12:17:51 2009 @@ -184,7 +184,7 @@ * Note that this does not test all possible combinations, which might be an * issue, particularly with combining marks, though they should be logically * equivalent in that case. Surrogate characters are also not tested here, - * see {...@link #testServerToClientBMPSurrogates()}. + * see {...@link #disabled_testServerToClientBMPSurrogates()}. */ public void testServerToClientBMP() { delayTestFinish(TEST_FINISH_DELAY_MS); @@ -203,7 +203,9 @@ * Note that this does not test all possible combinations. */ @DoNotRunWith(Platform.Htmlunit) - public void testServerToClientBMPSurrogates() { + // TODO(jat): decide if we really want to specify this behavior since some + // browsers and OOPHM plugins have issues with it -- disabled for now + public void disabled_testServerToClientBMPSurrogates() { delayTestFinish(TEST_FINISH_DELAY_MS); serverToClientVerify(Character.MIN_SURROGATE, Character.MIN_SUPPLEMENTARY_CODE_POINT, CHARACTER_BLOCK_SIZE, --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
