Title: [272420] trunk/LayoutTests
Revision
272420
Author
[email protected]
Date
2021-02-05 09:38:19 -0800 (Fri, 05 Feb 2021)

Log Message

REGRESSION (r272392): [ MacOS ] webaudio/audioworklet-addModule-failure.html is flakey timing out
https://bugs.webkit.org/show_bug.cgi?id=221469
<rdar://problem/74027196>

Unreviewed, make sure the test triggers JS garbage collection before exiting so that the next test does
not fail with an out-of-memory error.

* webaudio/audioworket-out-of-memory.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (272419 => 272420)


--- trunk/LayoutTests/ChangeLog	2021-02-05 17:20:38 UTC (rev 272419)
+++ trunk/LayoutTests/ChangeLog	2021-02-05 17:38:19 UTC (rev 272420)
@@ -1,3 +1,14 @@
+2021-02-05  Chris Dumez  <[email protected]>
+
+        REGRESSION (r272392): [ MacOS ] webaudio/audioworklet-addModule-failure.html is flakey timing out
+        https://bugs.webkit.org/show_bug.cgi?id=221469
+        <rdar://problem/74027196>
+
+        Unreviewed, make sure the test triggers JS garbage collection before exiting so that the next test does
+        not fail with an out-of-memory error.
+
+        * webaudio/audioworket-out-of-memory.html:
+
 2021-02-05  Carlos Garcia Campos  <[email protected]>
 
         REGRESSION(r271879) [SOUP] webrtc/datachannel/gather-candidates-networkprocess-crash.html is crashing in debug mode

Modified: trunk/LayoutTests/webaudio/audioworket-out-of-memory.html (272419 => 272420)


--- trunk/LayoutTests/webaudio/audioworket-out-of-memory.html	2021-02-05 17:20:38 UTC (rev 272419)
+++ trunk/LayoutTests/webaudio/audioworket-out-of-memory.html	2021-02-05 17:38:19 UTC (rev 272420)
@@ -28,4 +28,7 @@
     CSS.paintWorklet.addModule('');
   }
   new AudioContext().audioWorklet.addModule('');
+
+  // Clean up before moving on to next test.
+  $vm.gc();
 </script>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to