summaryrefslogtreecommitdiff
path: root/test/parallel/test-trace-events-vm.js
diff options
context:
space:
mode:
authorRichard Lau <riclau@uk.ibm.com>2018-10-16 13:28:52 -0400
committerDaniel Bevenius <daniel.bevenius@gmail.com>2018-10-19 07:22:54 +0200
commit23f8b7d334db86a78464f8694c015afab6dedfc3 (patch)
tree055d5d313cd090ce858100094a9620ea9f1ea870 /test/parallel/test-trace-events-vm.js
parent15c336684fd552e1f5cd256326ba33c81f43c825 (diff)
downloadandroid-node-v8-23f8b7d334db86a78464f8694c015afab6dedfc3.tar.gz
android-node-v8-23f8b7d334db86a78464f8694c015afab6dedfc3.tar.bz2
android-node-v8-23f8b7d334db86a78464f8694c015afab6dedfc3.zip
test: enable trace-events tests for workers
Use the `cwd` option for `child_process` instead of `process.chdir()` to enable the trace events tests to run on workers. PR-URL: https://github.com/nodejs/node/pull/23698 Refs: https://github.com/nodejs/node/pull/23674#discussion_r225335819 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-trace-events-vm.js')
-rw-r--r--test/parallel/test-trace-events-vm.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/parallel/test-trace-events-vm.js b/test/parallel/test-trace-events-vm.js
index 758de3e964..3e5d32b6c3 100644
--- a/test/parallel/test-trace-events-vm.js
+++ b/test/parallel/test-trace-events-vm.js
@@ -2,13 +2,10 @@
const common = require('../common');
const assert = require('assert');
const cp = require('child_process');
-const path = require('path');
const fs = require('fs');
+const path = require('path');
const tmpdir = require('../common/tmpdir');
-if (!common.isMainThread)
- common.skip('process.chdir is not available in Workers');
-
const names = [
'ContextifyScript::New',
'RunInThisContext',
@@ -20,10 +17,10 @@ if (process.argv[2] === 'child') {
vm.runInNewContext('1 + 1');
} else {
tmpdir.refresh();
- process.chdir(tmpdir.path);
const proc = cp.fork(__filename,
[ 'child' ], {
+ cwd: tmpdir.path,
execArgv: [
'--trace-event-categories',
'node.vm.script'