mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
583 B
30 lines
583 B
'use strict';
|
|
// Just test that destroying stdin doesn't mess up listening on a server.
|
|
// This is a regression test for GH-746.
|
|
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
process.stdin.destroy();
|
|
|
|
var accepted = null;
|
|
var server = net.createServer(function(socket) {
|
|
console.log('accepted');
|
|
accepted = socket;
|
|
socket.end();
|
|
server.close();
|
|
});
|
|
|
|
|
|
server.listen(common.PORT, function() {
|
|
console.log('listening...');
|
|
|
|
net.createConnection(common.PORT);
|
|
});
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(accepted);
|
|
});
|
|
|
|
|