Sha256: db53a9d8726996c209151ea408a29d5007f14901dfe236ef5afeb5fb149e7508

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

'use strict';
const common = require('../common');
const assert = require('assert');
const vm = require('vm');

const spawn = require('child_process').spawn;

if (common.isWindows) {
  // No way to send CTRL_C_EVENT to processes from JS right now.
  common.skip('platform not supported');
  return;
}

if (process.argv[2] === 'child') {
  const parent = +process.env.REPL_TEST_PPID;
  assert.ok(parent);

  assert.throws(() => {
    vm.runInThisContext(`process.kill(${parent}, "SIGUSR2"); while(true) {}`, {
      breakOnSigint: true
    });
  }, /Script execution interrupted/);

  return;
}

process.env.REPL_TEST_PPID = process.pid;

// Set the `SIGUSR2` handler before spawning the child process to make sure
// the signal is always handled.
process.on('SIGUSR2', common.mustCall(() => {
  process.kill(child.pid, 'SIGINT');
}));

const child = spawn(process.execPath, [__filename, 'child'], {
  stdio: [null, 'pipe', 'inherit']
});

child.on('close', common.mustCall((code, signal) => {
  assert.strictEqual(signal, null);
  assert.strictEqual(code, 0);
}));

Version data entries

5 entries across 4 versions & 1 rubygems

Version Path
node-compiler-0.9.1 vendor/node/test/parallel/test-vm-sigint.js
node-compiler-0.9.0 vendor/node-v7.2.1/test/parallel/test-vm-sigint.js
node-compiler-0.8.0 vendor/node-v7.2.0/test/parallel/test-vm-sigint.js
node-compiler-0.7.0 vendor/node-v6.9.1/test/parallel/test-vm-sigint.js
node-compiler-0.7.0 vendor/node-v7.1.0/test/parallel/test-vm-sigint.js