Changeset 281658 in webkit
- Timestamp:
- Aug 26, 2021, 2:59:19 PM (5 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 4 edited
-
ChangeLog (modified) (1 diff)
-
http/tests/websocket/tests/hybi/inspector/echo-delayed_wsh.py (modified) (1 diff)
-
http/tests/websocket/tests/hybi/inspector/send-and-recieve-debugger.html (modified) (1 diff)
-
platform/mac/TestExpectations (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r281657 r281658 1 2021-08-26 Patrick Angle <pangle@apple.com> 2 3 [ EWS Catalina ] http/tests/websocket/tests/hybi/inspector/send-and-recieve-debugger.html is flaky timing out / failing 4 https://bugs.webkit.org/show_bug.cgi?id=229459 5 6 Reviewed by Devin Rousso. 7 8 Increase timings slightly to widen the window during which we receive messages while paused in the debugger and 9 also delay the echo server's response further. 10 11 * http/tests/websocket/tests/hybi/inspector/echo-delayed_wsh.py: 12 (web_socket_transfer_data): 13 * http/tests/websocket/tests/hybi/inspector/send-and-recieve-debugger.html: 14 * platform/mac/TestExpectations: 15 1 16 2021-08-26 Robert Jenner <Jenner@apple.com> 2 17 -
trunk/LayoutTests/http/tests/websocket/tests/hybi/inspector/echo-delayed_wsh.py
r281323 r281658 10 10 # Echo message back 11 11 message = msgutil.receive_message(request) 12 sleep(0. 1)12 sleep(0.25) 13 13 msgutil.send_message(request, message) -
trunk/LayoutTests/http/tests/websocket/tests/hybi/inspector/send-and-recieve-debugger.html
r281323 r281658 51 51 InspectorTest.evaluateInPage(`debugger`); 52 52 53 // The WebSocket echos with a 100ms delay, so wait a bit longer than that before resuming to53 // The WebSocket echos with a 250ms delay, so wait a bit longer than that before resuming to 54 54 // ensure we receive the message while still paused. 55 55 setTimeout(() => { 56 56 InspectorTest.log("Resuming script execution.") 57 57 WI.debuggerManager.resume().catch(reject); 58 }, 200);58 }, 500); 59 59 } else if (frameAddedCount === 2) { 60 60 -
trunk/LayoutTests/platform/mac/TestExpectations
r281626 r281658 656 656 657 657 webkit.org/b/89153 http/tests/websocket/tests/hybi/workers/close.html [ Pass Failure ] 658 659 webkit.org/b/229459 [ Debug ] http/tests/websocket/tests/hybi/inspector/send-and-recieve-debugger.html [ Pass Failure Timeout ]660 658 661 659 # <rdar://problem/16696298>
Note:
See TracChangeset
for help on using the changeset viewer.