mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
dcfda1007b
In the hopes of soon having the benchmark code linted, this change groups all the likely non-controversial lint-compliance changes such as indentation, semi-colon usage, and single-vs.-double quotation marks. Other lint rules may have subtle performance implications in the V8 currently shipped with Node.js. Those changes will require more careful review and will be in a separate change. PR-URL: https://github.com/nodejs/node/pull/5429 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Brian White <mscdex@mscdex.net>
38 lines
770 B
JavaScript
38 lines
770 B
JavaScript
'use strict';
|
|
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]
|
|
});
|
|
|
|
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);
|
|
});
|
|
}
|
|
}
|