Title: [239390] trunk/LayoutTests
Revision
239390
Author
you...@apple.com
Date
2018-12-19 14:00:16 -0800 (Wed, 19 Dec 2018)

Log Message

[ MacOS iOS ] Layout Test webrtc/no-port-zero-in-upd-candidates.html is flaky timeout
https://bugs.webkit.org/show_bug.cgi?id=192866

Reviewed by Alex Christensen.

* webrtc/no-port-zero-in-upd-candidates.html:
Add some more logging in the test in case of time out.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (239389 => 239390)


--- trunk/LayoutTests/ChangeLog	2018-12-19 21:25:29 UTC (rev 239389)
+++ trunk/LayoutTests/ChangeLog	2018-12-19 22:00:16 UTC (rev 239390)
@@ -1,3 +1,13 @@
+2018-12-19  Youenn Fablet  <you...@apple.com>
+
+        [ MacOS iOS ] Layout Test webrtc/no-port-zero-in-upd-candidates.html is flaky timeout
+        https://bugs.webkit.org/show_bug.cgi?id=192866
+
+        Reviewed by Alex Christensen.
+
+        * webrtc/no-port-zero-in-upd-candidates.html:
+        Add some more logging in the test in case of time out.
+
 2018-12-19  Ryan Haddad  <ryanhad...@apple.com>
 
         REGRESSION (r234940): [ MacOS ] Layout Test imported/w3c/web-platform-tests/media-source/mediasource-changetype-play.html is flaky

Modified: trunk/LayoutTests/webrtc/no-port-zero-in-upd-candidates.html (239389 => 239390)


--- trunk/LayoutTests/webrtc/no-port-zero-in-upd-candidates.html	2018-12-19 21:25:29 UTC (rev 239389)
+++ trunk/LayoutTests/webrtc/no-port-zero-in-upd-candidates.html	2018-12-19 22:00:16 UTC (rev 239390)
@@ -12,6 +12,9 @@
 {
     var candidates = [];
     return new Promise((resolve, reject) => {
+        setTimeout(() => {
+            reject("gathering did time out with " + candidates.length + " candidates");
+        }, 10000);
         pc._onicecandidate_ = (event) => {
             if (event.candidate === null) {
                 resolve(candidates);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to