mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
463 B
26 lines
463 B
12 years ago
|
var common = require('../common.js');
|
||
|
var bench = common.createBenchmark(main, {
|
||
|
thousands: [1]
|
||
|
});
|
||
|
|
||
|
var spawn = require('child_process').spawn;
|
||
|
function main(conf) {
|
||
|
var len = +conf.thousands * 1000;
|
||
|
|
||
|
bench.start();
|
||
|
go(len, len);
|
||
|
}
|
||
|
|
||
|
function go(n, left) {
|
||
|
if (--left === 0)
|
||
|
return bench.end(n);
|
||
|
|
||
|
var child = spawn('echo', ['hello']);
|
||
|
child.on('exit', function(code) {
|
||
|
if (code)
|
||
|
process.exit(code);
|
||
|
else
|
||
|
go(n, left);
|
||
|
});
|
||
|
}
|