node/test/sequential/test-vm-timeout-rethrow.js
Rich Trott 31600735f4 lib,test,tools: alignment on variable assignments
Correct alignment on variable assignments that span multiple lines in
preparation for lint rule to enforce such alignment.

PR-URL: https://github.com/nodejs/node/pull/6242
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Reviewed-By: James M Snell <jasnell@gmail.com>
2016-04-18 17:19:11 -07:00

30 lines
696 B
JavaScript

'use strict';
require('../common');
var assert = require('assert');
var vm = require('vm');
var spawn = require('child_process').spawn;
if (process.argv[2] === 'child') {
var code = 'var j = 0;\n' +
'for (var i = 0; i < 1000000; i++) j += add(i, i + 1);\n' +
'j;';
var ctx = vm.createContext({
add: function(x, y) {
return x + y;
}
});
vm.runInContext(code, ctx, { timeout: 1 });
} else {
var proc = spawn(process.execPath, process.argv.slice(1).concat('child'));
var err = '';
proc.stderr.on('data', function(data) {
err += data;
});
process.on('exit', function() {
assert.ok(/Script execution timed out/.test(err));
});
}