mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
02fe8215f0
common.js contains code that checks for variables leaking into the global namespace. Load common.js in all tests that do not intentionally leak variables. PR-URL: https://github.com/nodejs/node/pull/3095 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
30 lines
682 B
JavaScript
30 lines
682 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));
|
|
});
|
|
}
|