mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 16:22:29 +00:00

* Make common.skip() exit. Also add common.printSkipMessage() for partial skips. * Don't make needless things before skip PR-URL: https://github.com/nodejs/node/pull/14021 Fixes: https://github.com/nodejs/node/issues/14016 Reviewed-By: Refael Ackermann <refack@gmail.com>
16 lines
423 B
JavaScript
16 lines
423 B
JavaScript
'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.expectWarning('Warning',
|
|
'process.on(SIGPROF) is reserved while debugging');
|
|
|
|
process.on('SIGPROF', () => {});
|