Title: [102327] trunk/LayoutTests
Revision
102327
Author
[email protected]
Date
2011-12-08 02:44:51 -0800 (Thu, 08 Dec 2011)

Log Message

Fix failed layout test, bufferedAmount-after-close-in-busy.html
https://bugs.webkit.org/show_bug.cgi?id=73666

Originally the failed layout test use simple_wsh server side WebSocket
handler. But this handler starts closing handshake after a while and
it bring flakiness on the test.
Now the test use echo_wsh instead of simple_wsh. It never perform
server initiated closing handshake.

Patch by Takashi Toyoshima <[email protected]> on 2011-12-08
Reviewed by Kent Tamura.

* http/tests/websocket/tests/hybi/bufferedAmount-after-close-in-busy.html:
* platform/gtk/Skipped:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (102326 => 102327)


--- trunk/LayoutTests/ChangeLog	2011-12-08 10:37:07 UTC (rev 102326)
+++ trunk/LayoutTests/ChangeLog	2011-12-08 10:44:51 UTC (rev 102327)
@@ -1,3 +1,19 @@
+2011-12-08  Takashi Toyoshima  <[email protected]>
+
+        Fix failed layout test, bufferedAmount-after-close-in-busy.html
+        https://bugs.webkit.org/show_bug.cgi?id=73666
+
+        Originally the failed layout test use simple_wsh server side WebSocket
+        handler. But this handler starts closing handshake after a while and
+        it bring flakiness on the test.
+        Now the test use echo_wsh instead of simple_wsh. It never perform
+        server initiated closing handshake.
+
+        Reviewed by Kent Tamura.
+
+        * http/tests/websocket/tests/hybi/bufferedAmount-after-close-in-busy.html:
+        * platform/gtk/Skipped:
+
 2011-12-08  Balazs Kelemen  <[email protected]>
 
         Unreviewed gardening.

Modified: trunk/LayoutTests/http/tests/websocket/tests/hybi/bufferedAmount-after-close-in-busy.html (102326 => 102327)


--- trunk/LayoutTests/http/tests/websocket/tests/hybi/bufferedAmount-after-close-in-busy.html	2011-12-08 10:37:07 UTC (rev 102326)
+++ trunk/LayoutTests/http/tests/websocket/tests/hybi/bufferedAmount-after-close-in-busy.html	2011-12-08 10:44:51 UTC (rev 102327)
@@ -28,7 +28,7 @@
     return builder.getBlob();
 }
 
-var ws = new WebSocket("ws://localhost:8880/websocket/tests/hybi/simple");
+var ws = new WebSocket("ws://localhost:8880/websocket/tests/hybi/echo");
 
 var bufferedAmountBeforeClose = 0;
 var bufferedAmountAfterClose = 0;

Modified: trunk/LayoutTests/platform/gtk/Skipped (102326 => 102327)


--- trunk/LayoutTests/platform/gtk/Skipped	2011-12-08 10:37:07 UTC (rev 102326)
+++ trunk/LayoutTests/platform/gtk/Skipped	2011-12-08 10:44:51 UTC (rev 102327)
@@ -1589,9 +1589,6 @@
 fast/forms/number/spin-in-multi-column.html
 fast/forms/range/slider-in-multi-column.html
 
-# https://bugs.webkit.org/show_bug.cgi?id=73666
-http/tests/websocket/tests/hybi/bufferedAmount-after-close-in-busy.html
-
 # https://bugs.webkit.org/show_bug.cgi?id=73583
 fullscreen/video-controls-override.html
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to