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.
22 lines
603 B
22 lines
603 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const child_process = require('child_process');
|
|
|
|
const p = child_process.spawn(process.execPath, [
|
|
'-e',
|
|
'vm = require("vm");' +
|
|
'context = vm.createContext({});' +
|
|
'try { vm.runInContext("throw new Error(\'boo\')", context); } ' +
|
|
'catch (e) { console.log(e.message); }'
|
|
]);
|
|
|
|
p.stderr.on('data', common.mustNotCall());
|
|
|
|
let output = '';
|
|
|
|
p.stdout.on('data', (data) => output += data);
|
|
|
|
p.stdout.on('end', common.mustCall(() => {
|
|
assert.strictEqual(output.replace(/[\r\n]+/g, ''), 'boo');
|
|
}));
|
|
|