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.
26 lines
639 B
26 lines
639 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var child_process = require('child_process');
|
|
|
|
var 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', function(data) {
|
|
assert(false, 'Unexpected stderr data: ' + data);
|
|
});
|
|
|
|
var output = '';
|
|
|
|
p.stdout.on('data', function(data) {
|
|
output += data;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(output.replace(/[\r\n]+/g, ''), 'boo');
|
|
});
|
|
|