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.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@239390
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2018-12-19 Youenn Fablet <youenn@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 <ryanhaddad@apple.com>
REGRESSION (r234940): [ MacOS ] Layout Test imported/w3c/web-platform-tests/media-source/mediasource-changetype-play.html is flaky
{
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);