0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/benchmark/misc/startup.js

38 lines
770 B
JavaScript
Raw Normal View History

'use strict';
2013-02-11 22:24:27 +01:00
var common = require('../common.js');
var spawn = require('child_process').spawn;
var path = require('path');
var emptyJsFile = path.resolve(__dirname, '../../test/fixtures/semicolon.js');
var bench = common.createBenchmark(startNode, {
dur: [1]
2013-02-11 22:24:27 +01:00
});
function startNode(conf) {
var dur = +conf.dur;
var go = true;
var starts = 0;
setTimeout(function() {
go = false;
}, dur * 1000);
bench.start();
start();
function start() {
var node = spawn(process.execPath || process.argv[0], [emptyJsFile]);
node.on('exit', function(exitCode) {
if (exitCode !== 0) {
throw new Error('Error during node startup');
}
starts++;
if (go)
start();
else
bench.end(starts);
});
}
}