mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
577 B
21 lines
577 B
7 years ago
|
'use strict';
|
||
|
// This test verifies that the shell option is not supported by fork().
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const cp = require('child_process');
|
||
|
const expected = common.isWindows ? '%foo%' : '$foo';
|
||
|
|
||
|
if (process.argv[2] === undefined) {
|
||
|
const child = cp.fork(__filename, [expected], {
|
||
|
shell: true,
|
||
|
env: { foo: 'bar' }
|
||
|
});
|
||
|
|
||
|
child.on('exit', common.mustCall((code, signal) => {
|
||
|
assert.strictEqual(code, 0);
|
||
|
assert.strictEqual(signal, null);
|
||
|
}));
|
||
|
} else {
|
||
|
assert.strictEqual(process.argv[2], expected);
|
||
|
}
|