From e17117dfda8b8f117bb0cd145012d7e04b86e9a6 Mon Sep 17 00:00:00 2001 From: Keyhan Vakil Date: Sun, 7 Aug 2022 05:26:59 -0700 Subject: [PATCH] test: move test-vm-break-on-sigint to sequential This PR moves `test-vm-break-on-sigint.js` to sequential, following the other PRs I have made to move CPU intensive tests into sequential. The test has already been tuned to do less iterations in a previous PR. However it is still causing ~7% of build failures. The timeouts seem highly correlated with other tests which spawn a bunch of threads also failing, see for example the [first Jenkins failure][] and the [last Jenkins failure][]. [first Jenkins failure]: https://ci.nodejs.org/job/node-test-pull-request/45756/ [last Jenkins failure]: https://ci.nodejs.org/job/node-test-pull-request/45837/ Refs: https://github.com/nodejs/node/pull/44090 Refs: https://github.com/nodejs/node/pull/43981 Refs: https://github.com/nodejs/reliability/issues/337 PR-URL: https://github.com/nodejs/node/pull/44140 Reviewed-By: Luigi Pinca Reviewed-By: theanarkh Reviewed-By: Feng Yu --- test/{parallel => sequential}/test-vm-break-on-sigint.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename test/{parallel => sequential}/test-vm-break-on-sigint.js (100%) diff --git a/test/parallel/test-vm-break-on-sigint.js b/test/sequential/test-vm-break-on-sigint.js similarity index 100% rename from test/parallel/test-vm-break-on-sigint.js rename to test/sequential/test-vm-break-on-sigint.js