Skip to content

Commit 63a588e

Browse files
committed
[ macOS ] imported/w3c/web-platform-tests/webaudio/the-audio-api/the-analysernode-interface/realtimeanalyser-fft-scaling.html is a flakey text failure
https://bugs.webkit.org/show_bug.cgi?id=223966 <rdar://problem/76028345> Reviewed by Darin Adler. LayoutTests/imported/w3c: Update test as per: - web-platform-tests/wpt#28428 Make sure subtests are run one after another, not in parallel, so that PASS lines are printed out in a consistent order. * web-platform-tests/webaudio/the-audio-api/the-analysernode-interface/realtimeanalyser-fft-scaling.html: LayoutTests: Unskip test that should no longer be flaky. * platform/mac/TestExpectations: Canonical link: https://commits.webkit.org/236374@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@275803 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 94cdcd2 commit 63a588e

4 files changed

Lines changed: 31 additions & 7 deletions

File tree

LayoutTests/ChangeLog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2021-04-10 Chris Dumez <cdumez@apple.com>
2+
3+
[ macOS ] imported/w3c/web-platform-tests/webaudio/the-audio-api/the-analysernode-interface/realtimeanalyser-fft-scaling.html is a flakey text failure
4+
https://bugs.webkit.org/show_bug.cgi?id=223966
5+
<rdar://problem/76028345>
6+
7+
Reviewed by Darin Adler.
8+
9+
Unskip test that should no longer be flaky.
10+
11+
* platform/mac/TestExpectations:
12+
113
2021-04-10 Chris Dumez <cdumez@apple.com>
214

315
[ macOS ] 3 webaudio/OfflineAudioContext/ layout-tests are flakey text failures

LayoutTests/imported/w3c/ChangeLog

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2021-04-10 Chris Dumez <cdumez@apple.com>
2+
3+
[ macOS ] imported/w3c/web-platform-tests/webaudio/the-audio-api/the-analysernode-interface/realtimeanalyser-fft-scaling.html is a flakey text failure
4+
https://bugs.webkit.org/show_bug.cgi?id=223966
5+
<rdar://problem/76028345>
6+
7+
Reviewed by Darin Adler.
8+
9+
Update test as per:
10+
- https://github.com/web-platform-tests/wpt/pull/28428
11+
12+
Make sure subtests are run one after another, not in parallel, so that PASS lines are printed out in a
13+
consistent order.
14+
15+
* web-platform-tests/webaudio/the-audio-api/the-analysernode-interface/realtimeanalyser-fft-scaling.html:
16+
117
2021-04-09 Antoine Quint <graouts@webkit.org>
218

319
calc() simplification for a multiplication should apply the multiplication to each value of an addition

LayoutTests/imported/w3c/web-platform-tests/webaudio/the-audio-api/the-analysernode-interface/realtimeanalyser-fft-scaling.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,11 @@
7878
label: 'FFT scaling tests',
7979
description: 'Test Scaling of FFT in AnalyserNode'
8080
},
81-
function(task, should) {
81+
async function(task, should) {
8282
let tests = [];
8383
for (let k = 5; k <= 15; ++k)
84-
tests.push(runTest(k, should));
85-
86-
// The order in which the tests finish is not important.
87-
Promise.all(tests).then(task.done.bind(task));
84+
await runTest(k, should);
85+
task.done();
8886
});
8987

9088
function runTest(order, should) {

LayoutTests/platform/mac/TestExpectations

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2270,8 +2270,6 @@ webkit.org/b/222748 [ Debug ] http/tests/security/contentSecurityPolicy/frame-sr
22702270

22712271
webkit.org/b/223949 crypto/crypto-random-values-oom.html [ Pass Timeout ]
22722272

2273-
webkit.org/b/223966 imported/w3c/web-platform-tests/webaudio/the-audio-api/the-analysernode-interface/realtimeanalyser-fft-scaling.html [ Pass Failure ]
2274-
22752273
webkit.org/b/223973 [ Debug ] imported/w3c/web-platform-tests/xhr/xhr-timeout-longtask.any.worker.html [ Pass Failure ]
22762274

22772275
webkit.org/b/223975 inspector/protocol/condition.html [ Pass Timeout ]

0 commit comments

Comments
 (0)