Title: [283235] trunk/LayoutTests
Revision
283235
Author
[email protected]
Date
2021-09-29 11:05:07 -0700 (Wed, 29 Sep 2021)

Log Message

[ iOS macOS wk2 ] webrtc/datachannel/mdns-ice-candidates.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=230700
<rdar://problem/83456565>

Reviewed by Eric Carlson.

* platform/mac-wk2/TestExpectations:
* webrtc/datachannel/mdns-ice-candidates.html:
Close connections test after test.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (283234 => 283235)


--- trunk/LayoutTests/ChangeLog	2021-09-29 17:58:33 UTC (rev 283234)
+++ trunk/LayoutTests/ChangeLog	2021-09-29 18:05:07 UTC (rev 283235)
@@ -1,3 +1,15 @@
+2021-09-29  Youenn Fablet  <[email protected]>
+
+        [ iOS macOS wk2 ] webrtc/datachannel/mdns-ice-candidates.html is a flaky failure
+        https://bugs.webkit.org/show_bug.cgi?id=230700
+        <rdar://problem/83456565>
+
+        Reviewed by Eric Carlson.
+
+        * platform/mac-wk2/TestExpectations:
+        * webrtc/datachannel/mdns-ice-candidates.html:
+        Close connections test after test.
+
 2021-09-29  Ayumi Kojima  <[email protected]>
 
         [ iOS ] fast/scrolling/ios/click-events-after-long-press-during-momentum-scroll-in-overflow.html is a flaky timeout.

Modified: trunk/LayoutTests/platform/mac-wk2/TestExpectations (283234 => 283235)


--- trunk/LayoutTests/platform/mac-wk2/TestExpectations	2021-09-29 17:58:33 UTC (rev 283234)
+++ trunk/LayoutTests/platform/mac-wk2/TestExpectations	2021-09-29 18:05:07 UTC (rev 283235)
@@ -1642,8 +1642,6 @@
 
 webkit.org/b/209878 [ Debug ] webrtc/datachannel/multiple-connections.html [ Pass Failure Slow ]
 
-webkit.org/b/230700 webrtc/datachannel/mdns-ice-candidates.html [ Pass Failure ]
-
 # rdar://82002352 ([ Monterey wk2 Release ] css3/blending/background-blend-mode-background-clip-content-box.html is flaky image failing)
 [ Monterey Release ] css3/blending/background-blend-mode-background-clip-content-box.html [ Pass ImageOnlyFailure ]
 

Modified: trunk/LayoutTests/webrtc/datachannel/mdns-ice-candidates.html (283234 => 283235)


--- trunk/LayoutTests/webrtc/datachannel/mdns-ice-candidates.html	2021-09-29 17:58:33 UTC (rev 283234)
+++ trunk/LayoutTests/webrtc/datachannel/mdns-ice-candidates.html	2021-09-29 18:05:07 UTC (rev 283235)
@@ -68,6 +68,7 @@
     });
 
     assert_true(connection.localDescription.sdp.includes(".local "));
+    closeConnections();
 }, "Getting some MDNS candidates");
 
 var finishTest;
@@ -86,6 +87,7 @@
         });
         setTimeout(() => { reject("Test timed out"); }, 5000);
     });
+    closeConnections();
 }, "Basic data channel exchange from offerer to receiver");
 
 promise_test((test) => {
@@ -103,6 +105,7 @@
         });
         setTimeout(() => { reject("Test timed out"); }, 5000);
     });
+    closeConnections();
 }, "Basic data channel exchange from receiver to offerer");
 
 
@@ -121,6 +124,7 @@
         }, { filterOutICECandidate: (candidate) => { return candidate && candidate.candidate.toLowerCase().indexOf("udp") == -1; } });
         setTimeout(() => { reject("Test timed out"); }, 5000);
     });
+    closeConnections();
 }, "Basic data channel exchange from offerer to receiver using UDP only");
 
 promise_test((test) => {
@@ -149,6 +153,7 @@
         });
         setTimeout(() => { reject("Test timed out"); }, 5000);
     });
+    closeConnections();
 }, "Basic data channel exchange from offerer to receiver 2");
 
 promise_test(async (test) => {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to