mirror of https://github.com/lukechilds/node.git
21 lines
468 B
21 lines
468 B
'use strict';
|
|
// Just test that destroying stdin doesn't mess up listening on a server.
|
|
// This is a regression test for GH-746.
|
|
|
|
const common = require('../common');
|
|
const net = require('net');
|
|
|
|
process.stdin.destroy();
|
|
|
|
const server = net.createServer(common.mustCall(function(socket) {
|
|
console.log('accepted');
|
|
socket.end();
|
|
server.close();
|
|
}));
|
|
|
|
|
|
server.listen(0, function() {
|
|
console.log('listening...');
|
|
|
|
net.createConnection(this.address().port);
|
|
});
|
|
|