Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGeoffrey Booth <456802+GeoffreyBooth@users.noreply.github.com>2022-04-25 22:24:09 +0300
committerGitHub <noreply@github.com>2022-04-25 22:24:09 +0300
commitf54bf2839baee1ac354a19b7167f9854be3b0db0 (patch)
treeb48827102ea284212155f2fe24afd4dd29b57c94 /test
parent2691222b650a76bb90893c22d82b654f3cc7e4d5 (diff)
test: skip test that cannot pass under --node-builtin-modules-path
PR-URL: https://github.com/nodejs/node/pull/42834 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-worker-init-failure.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/parallel/test-worker-init-failure.js b/test/parallel/test-worker-init-failure.js
index a15d8a75617..078329ee688 100644
--- a/test/parallel/test-worker-init-failure.js
+++ b/test/parallel/test-worker-init-failure.js
@@ -10,6 +10,10 @@ if (common.isWindows) {
common.skip('ulimit does not work on Windows.');
}
+if (process.config.variables.node_builtin_modules_path) {
+ common.skip('this test cannot pass when Node.js is built with --node-builtin-modules-path');
+}
+
// A reasonably low fd count. An empty node process
// creates around 30 fds for its internal purposes,
// so making it too low will crash the process early,