From 3f9c6c0f60c52907251c3567b89eee7b86c174f0 Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Sun, 1 Dec 2024 08:13:10 +0100 Subject: [PATCH] test: move test-worker-arraybuffer-zerofill to parallel Move `test/sequential/test-worker-arraybuffer-zerofill.js` back to `test/parallel/test-worker-arraybuffer-zerofill.js` and remove the flaky designation. The original issue is likely the same as other tests that time out. Refs: https://github.com/nodejs/node/issues/54918 Refs: https://github.com/nodejs/node/pull/54839 Refs: https://github.com/nodejs/node/pull/54802 PR-URL: https://github.com/nodejs/node/pull/56053 Reviewed-By: Richard Lau Reviewed-By: LiviaMedeiros Reviewed-By: Jake Yuesong Li --- test/parallel/parallel.status | 2 -- .../test-worker-arraybuffer-zerofill.js | 0 2 files changed, 2 deletions(-) rename test/{sequential => parallel}/test-worker-arraybuffer-zerofill.js (100%) diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status index 2f94923799bdea..974fef4d5020be 100644 --- a/test/parallel/parallel.status +++ b/test/parallel/parallel.status @@ -45,8 +45,6 @@ test-sqlite-statement-sync: PASS, FLAKY test-runner-run-watch: PASS, FLAKY # https://github.com/nodejs/node/issues/37692 test-fs-utimes: PASS, FLAKY -# https://github.com/nodejs/node/issues/52274 -test-worker-arraybuffer-zerofill: PASS, FLAKY [$system==linux || $system==win32] # https://github.com/nodejs/node/issues/49605 diff --git a/test/sequential/test-worker-arraybuffer-zerofill.js b/test/parallel/test-worker-arraybuffer-zerofill.js similarity index 100% rename from test/sequential/test-worker-arraybuffer-zerofill.js rename to test/parallel/test-worker-arraybuffer-zerofill.js