Revision: 6396 Author: [email protected] Date: Fri Oct 16 12:07:20 2009 Log: Disabling tests that cause FF to crash in dev mode on Windows.
Patch by: jlabanca Review by: jat http://code.google.com/p/google-web-toolkit/source/detail?r=6396 Modified: /trunk/user/test/com/google/gwt/dev/jjs/test/HostedTest.java ======================================= --- /trunk/user/test/com/google/gwt/dev/jjs/test/HostedTest.java Wed Mar 4 10:40:25 2009 +++ /trunk/user/test/com/google/gwt/dev/jjs/test/HostedTest.java Fri Oct 16 12:07:20 2009 @@ -276,7 +276,12 @@ assertEquals("VAL3-foo", TestEnum.VAL3.foo()); } - public void testFloat() { + /** + * Returning Float.MAX_VALUE or Double.MAX_VALUE causes firefox to crash on + * Windows in dev mode + * TODO (jat): Enable this test before shipping GWT 2.0. + */ + public void disabledTestFloat() { storeFloat(Float.MIN_VALUE); float f = getFloat(); assertTrue(f == Float.MIN_VALUE); @@ -410,8 +415,12 @@ /** * More test cases resulting from issue 2426 to show that primitives can be * passed through JSNI methods unmolested. + * + * Returning Float.MAX_VALUE or Double.MAX_VALUE causes firefox to crash on + * Windows in dev mode + * TODO(jat): Enable this test before shipping GWT 2.0. */ - public void testJsniPassthroughPrimitives() { + public void disabledTestJsniPassthroughPrimitives() { class Inner { native boolean nativeBoolean(boolean param) /*-{ return param; --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
