node/test/sequential/test-pipe-address.js
Rich Trott 7a5ae34345 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-10 10:38:55 -07:00

21 lines
410 B
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var net = require('net');
var address = null;
var server = net.createServer(function() {
assert(false); // should not be called
});
common.refreshTmpDir();
server.listen(common.PIPE, function() {
address = server.address();
server.close();
});
process.on('exit', function() {
assert.equal(address, common.PIPE);
});