Title: [269979] trunk/LayoutTests
- Revision
- 269979
- Author
- [email protected]
- Date
- 2020-11-18 13:19:29 -0800 (Wed, 18 Nov 2020)
Log Message
Drop outdated webaudio/convolution-mono-mono.html test
https://bugs.webkit.org/show_bug.cgi?id=219107
Reviewed by Geoffrey Garen.
Drop outdated webaudio/convolution-mono-mono.html test.
An updated version is already present at:
imported/w3c/web-platform-tests/webaudio/the-audio-api/the-convolvernode-interface/convolution-mono-mono.html
* platform/gtk/TestExpectations:
* platform/mac/TestExpectations:
* platform/mac/TestExpectationsRosetta:
* webaudio/convolution-mono-mono-expected.txt: Removed.
* webaudio/convolution-mono-mono.html: Removed.
Modified Paths
Removed Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (269978 => 269979)
--- trunk/LayoutTests/ChangeLog 2020-11-18 21:09:19 UTC (rev 269978)
+++ trunk/LayoutTests/ChangeLog 2020-11-18 21:19:29 UTC (rev 269979)
@@ -1,5 +1,23 @@
2020-11-18 Chris Dumez <[email protected]>
+ Drop outdated webaudio/convolution-mono-mono.html test
+ https://bugs.webkit.org/show_bug.cgi?id=219107
+
+ Reviewed by Geoffrey Garen.
+
+ Drop outdated webaudio/convolution-mono-mono.html test.
+
+ An updated version is already present at:
+ imported/w3c/web-platform-tests/webaudio/the-audio-api/the-convolvernode-interface/convolution-mono-mono.html
+
+ * platform/gtk/TestExpectations:
+ * platform/mac/TestExpectations:
+ * platform/mac/TestExpectationsRosetta:
+ * webaudio/convolution-mono-mono-expected.txt: Removed.
+ * webaudio/convolution-mono-mono.html: Removed.
+
+2020-11-18 Chris Dumez <[email protected]>
+
Unreviewed, unskip several webaudio tests on Apple Silicon.
Those tests are no longer failing or flaky on this platform.
Modified: trunk/LayoutTests/platform/gtk/TestExpectations (269978 => 269979)
--- trunk/LayoutTests/platform/gtk/TestExpectations 2020-11-18 21:09:19 UTC (rev 269978)
+++ trunk/LayoutTests/platform/gtk/TestExpectations 2020-11-18 21:19:29 UTC (rev 269979)
@@ -1542,8 +1542,6 @@
webkit.org/b/153771 animations/resume-after-page-cache.html [ Failure Pass ]
-webkit.org/b/153943 webaudio/convolution-mono-mono.html [ Failure Pass ]
-
webkit.org/b/218320 imported/w3c/web-platform-tests/webaudio/the-audio-api/the-destinationnode-interface/destination.html [ Failure ]
webkit.org/b/156436 fast/harness/sample-fail-mismatch-reftest.html [ ImageOnlyFailure Pass ]
Modified: trunk/LayoutTests/platform/mac/TestExpectations (269978 => 269979)
--- trunk/LayoutTests/platform/mac/TestExpectations 2020-11-18 21:09:19 UTC (rev 269978)
+++ trunk/LayoutTests/platform/mac/TestExpectations 2020-11-18 21:19:29 UTC (rev 269979)
@@ -2207,7 +2207,6 @@
[ arm64 ] webaudio/Analyser/realtimeanalyser-byte-data.html [ Failure ]
[ arm64 ] webaudio/Analyser/realtimeanalyser-freq-data.html [ Failure ]
[ arm64 ] webaudio/Oscillator/no-dezippering.html [ Failure ]
-[ arm64 ] webaudio/convolution-mono-mono.html [ Failure ]
webkit.org/b/217118 [ Release ] imported/w3c/web-platform-tests/user-timing/measure-l3.any.worker.html [ Pass Failure ]
Modified: trunk/LayoutTests/platform/mac/TestExpectationsRosetta (269978 => 269979)
--- trunk/LayoutTests/platform/mac/TestExpectationsRosetta 2020-11-18 21:09:19 UTC (rev 269978)
+++ trunk/LayoutTests/platform/mac/TestExpectationsRosetta 2020-11-18 21:19:29 UTC (rev 269979)
@@ -38,7 +38,6 @@
webaudio/Analyser/realtimeanalyser-byte-data.html [ Failure ]
webaudio/Analyser/realtimeanalyser-freq-data.html [ Failure ]
webaudio/Oscillator/no-dezippering.html [ Failure ]
-webaudio/convolution-mono-mono.html [ Failure ]
webkit.org/b/218725 inspector/debugger/tail-deleted-frames/tail-deleted-frames-intermediate-frames.html [ Pass Timeout ]
Deleted: trunk/LayoutTests/webaudio/convolution-mono-mono-expected.txt (269978 => 269979)
--- trunk/LayoutTests/webaudio/convolution-mono-mono-expected.txt 2020-11-18 21:09:19 UTC (rev 269978)
+++ trunk/LayoutTests/webaudio/convolution-mono-mono-expected.txt 2020-11-18 21:19:29 UTC (rev 269979)
@@ -1,12 +0,0 @@
-Tests ConvolverNode processing a mono channel with mono impulse response.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-PASS Triangular portion of convolution is correct.
-PASS First part of tail of convolution is sufficiently small.
-PASS Rendered signal after tail of convolution is silent.
-PASS Test signal was correctly convolved.
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
Deleted: trunk/LayoutTests/webaudio/convolution-mono-mono.html (269978 => 269979)
--- trunk/LayoutTests/webaudio/convolution-mono-mono.html 2020-11-18 21:09:19 UTC (rev 269978)
+++ trunk/LayoutTests/webaudio/convolution-mono-mono.html 2020-11-18 21:19:29 UTC (rev 269979)
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
-<script type="text/_javascript_" src=""
-<script src=""
-<script src=""
-</head>
-
-<body>
-
-<div id="description"></div>
-<div id="console"></div>
-
-<script>
-description("Tests ConvolverNode processing a mono channel with mono impulse response.");
-
-// To test the convolver, we convolve two square pulses together to
-// produce a triangular pulse. To verify the result is correct we
-// check several parts of the result. First, we make sure the initial
-// part of the result is zero (due to the latency in the convolver).
-// Next, the triangular pulse should match the theoretical result to
-// within some roundoff. After the triangular pulse, the result
-// should be exactly zero, but round-off prevents that. We make sure
-// the part after the pulse is sufficiently close to zero. Finally,
-// the result should be exactly zero because the inputs are exactly
-// zero.
-function runTest() {
- window.jsTestIsAsync = true;
-
- // Create offline audio context.
- var context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, sampleRate);
-
- var squarePulse = createSquarePulseBuffer(context, pulseLengthFrames);
- var trianglePulse = createTrianglePulseBuffer(context, 2 * pulseLengthFrames);
-
- var bufferSource = context.createBufferSource();
- bufferSource.buffer = squarePulse;
-
- var convolver = context.createConvolver();
- convolver.normalize = false;
- convolver.buffer = squarePulse;
-
- bufferSource.connect(convolver);
- convolver.connect(context.destination);
-
- bufferSource.start(0);
-
- context._oncomplete_ = checkConvolvedResult(trianglePulse);
- context.startRendering();
-}
-
-runTest();
-
-</script>
-</body>
-</html>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes