summaryrefslogtreecommitdiff
path: root/deps/node/benchmark/child_process/spawn-echo.js
blob: 8f5c80cd23ba1819f0978f74b11b6e309f72f1f6 (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', (code) => {
    if (code)
      process.exit(code);
    else
      go(n, left);
  });
}