mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
8ef68e66d0
PR-URL: https://github.com/nodejs/node/pull/28858 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
30 lines
699 B
JavaScript
30 lines
699 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const net = require('net');
|
|
const assert = require('assert');
|
|
const { fork } = require('child_process');
|
|
|
|
// This test should end immediately after `unref` is called
|
|
// The pipe will stay open as Node.js completes, thus run in a child process
|
|
// so that tmpdir can be cleaned up.
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
|
|
if (process.argv[2] !== 'child') {
|
|
// Parent
|
|
tmpdir.refresh();
|
|
|
|
// Run test
|
|
const child = fork(__filename, ['child'], { stdio: 'inherit' });
|
|
child.on('exit', common.mustCall(function(code) {
|
|
assert.strictEqual(code, 0);
|
|
}));
|
|
|
|
return;
|
|
}
|
|
|
|
// Child
|
|
const s = net.Server();
|
|
s.listen(common.PIPE);
|
|
s.unref();
|