summaryrefslogtreecommitdiff
path: root/test/parallel/test-warn-sigprof.js
blob: eedbe33d84ff2a73ca2ca1ef4537285394eebc7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict';
const common = require('../common');

// The inspector attempts to start when Node starts. Once started, the inspector
// warns on the use of a SIGPROF listener.

common.skipIfInspectorDisabled();

if (common.isWindows) {
  common.skip('test does not apply to Windows');
  return;
}

common.expectWarning('Warning',
                     'process.on(SIGPROF) is reserved while debugging');

process.on('SIGPROF', () => {});