Title: [272722] trunk/LayoutTests
Revision
272722
Author
[email protected]
Date
2021-02-11 06:40:38 -0800 (Thu, 11 Feb 2021)

Log Message

Remove GPUProcess flag in MediaRecorder tests
https://bugs.webkit.org/show_bug.cgi?id=221401

Reviewed by Eric Carlson.

We will remove http/wpt/mediarecorder/MediaRecorder-AV-audio-video-dataavailable.html once rdar://problem/74043225 is fixed.

* http/wpt/mediarecorder/pause-recording.html:
Increase timer to cope with added latency introduced by IPC messaging.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (272721 => 272722)


--- trunk/LayoutTests/ChangeLog	2021-02-11 14:18:29 UTC (rev 272721)
+++ trunk/LayoutTests/ChangeLog	2021-02-11 14:40:38 UTC (rev 272722)
@@ -1,3 +1,15 @@
+2021-02-11  Youenn Fablet  <[email protected]>
+
+        Remove GPUProcess flag in MediaRecorder tests
+        https://bugs.webkit.org/show_bug.cgi?id=221401
+
+        Reviewed by Eric Carlson.
+
+        We will remove http/wpt/mediarecorder/MediaRecorder-AV-audio-video-dataavailable.html once rdar://problem/74043225 is fixed.
+
+        * http/wpt/mediarecorder/pause-recording.html:
+        Increase timer to cope with added latency introduced by IPC messaging.
+
 2021-02-11  Sergio Villar Senin  <[email protected]>
 
         Unreviewed test gardening.

Modified: trunk/LayoutTests/http/wpt/mediarecorder/pause-recording.html (272721 => 272722)


--- trunk/LayoutTests/http/wpt/mediarecorder/pause-recording.html	2021-02-11 14:18:29 UTC (rev 272721)
+++ trunk/LayoutTests/http/wpt/mediarecorder/pause-recording.html	2021-02-11 14:40:38 UTC (rev 272722)
@@ -1,4 +1,3 @@
-<!-- webkit-test-runner [ WebRTCPlatformCodecsInGPUProcessEnabled=false ] -->
 <!DOCTYPE html>
 <html>
 <head>
@@ -28,7 +27,7 @@
     setTimeout(() => recorder.pause(), 50);
     setTimeout(() => recorder.resume(), 950);
 
-    await waitFor(1000);
+    await waitFor(2000);
     recorder.stop();
     const blob = await dataPromise;
 
@@ -36,7 +35,7 @@
     video1.src = ""
     await video1.play();
 
-    assert_less_than(video1.duration, 0.5);
+    assert_less_than(video1.duration, 1.5);
 
     URL.revokeObjectURL(url);
 }, "Pausing and resuming the recording should impact the video duration");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to