summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/parallel/parallel.status1
-rw-r--r--test/parallel/test-child-process-exec-cwd.js2
2 files changed, 1 insertions, 2 deletions
diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status
index 927e972e9d..363cea8f65 100644
--- a/test/parallel/parallel.status
+++ b/test/parallel/parallel.status
@@ -16,7 +16,6 @@ test-fs-rmdir-recursive: PASS, FLAKY
# Windows on ARM
[$system==win32 && $arch==arm64]
-test-child-process-exec-cwd: SKIP
[$system==linux]
# https://github.com/nodejs/node/issues/39368
diff --git a/test/parallel/test-child-process-exec-cwd.js b/test/parallel/test-child-process-exec-cwd.js
index 2f86cf10fe..49e56ef551 100644
--- a/test/parallel/test-child-process-exec-cwd.js
+++ b/test/parallel/test-child-process-exec-cwd.js
@@ -35,5 +35,5 @@ if (common.isWindows) {
}
exec(pwdcommand, { cwd: dir }, common.mustSucceed((stdout, stderr) => {
- assert(stdout.startsWith(dir));
+ assert(stdout.toLowerCase().startsWith(dir));
}));