Welcome to mirror list, hosted at ThFree Co, Russian Federation.

spawn-echo.js « child_process « benchmark - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62f46fb4c0e8b4c18405671b6fdf7efdbfeef12b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
'use strict';
const common = require('../common.js');
const bench = common.createBenchmark(main, {
  n: [1000]
});

const spawn = require('child_process').spawn;
function main({ n }) {
  bench.start();
  go(n, n);
}

function go(n, left) {
  if (--left === 0)
    return bench.end(n);

  const child = spawn('echo', ['hello']);
  child.on('exit', function(code) {
    if (code)
      process.exit(code);
    else
      go(n, left);
  });
}