node/test/sequential/test-pipe-unref.js
Rich Trott a1040f2065 test: refresh temp directory when using pipe
common.PIPE resides in the temp directory (except on Windows). Insure
that the temp directory is refreshed in tests that use common.PIPE.

PR-URL: https://github.com/nodejs/node/pull/3231
Fixes: https://github.com/nodejs/node/issues/3227
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
2015-10-08 20:05:22 -07:00

22 lines
400 B
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var net = require('net');
var closed = false;
common.refreshTmpDir();
var s = net.Server();
s.listen(common.PIPE);
s.unref();
setTimeout(function() {
closed = true;
s.close();
}, 1000).unref();
process.on('exit', function() {
assert.strictEqual(closed, false, 'Unrefd socket should not hold loop open');
});