mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 09:02:40 +00:00

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>
30 lines
696 B
JavaScript
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));
|
|
});
|
|
}
|