aboutsummaryrefslogtreecommitdiff
path: root/test/fixtures/workload/allocation-sigint.js
blob: 96ae669016a91bb4cde9da5ddcf5bbd1d7bd0d99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict';

const util = require('util');
const total = parseInt(process.env.TEST_ALLOCATION) || 100;
let count = 0;
let string = '';
function runAllocation() {
  string += util.inspect(process.env);
  if (count++ < total) {
    setTimeout(runAllocation, 1);
  } else {
    console.log(string.length);
    process.kill(process.pid, "SIGINT");
  }
}

setTimeout(runAllocation, 1);