The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
29 lines
569 B
JavaScript
29 lines
569 B
JavaScript
// 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);
|
|
});
|
|
|