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.
23 lines
558 B
23 lines
558 B
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const vm = require('vm');
|
|
const spawn = require('child_process').spawn;
|
|
|
|
if (process.argv[2] === 'child') {
|
|
const code = 'while(true);';
|
|
|
|
const ctx = vm.createContext();
|
|
|
|
vm.runInContext(code, ctx, { timeout: 1 });
|
|
} else {
|
|
const proc = spawn(process.execPath, process.argv.slice(1).concat('child'));
|
|
let err = '';
|
|
proc.stderr.on('data', function(data) {
|
|
err += data;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(/Script execution timed out/.test(err));
|
|
});
|
|
}
|
|
|