blob: 36b0db78d826873c4b57c642e8ddee45aa381f57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Flags: --inspect=0
'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');
common.skipIfWorker(); // Worker inspector never has a server running
common.expectWarning('Warning',
'process.on(SIGPROF) is reserved while debugging');
process.on('SIGPROF', () => {});
|