mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
f29762f4dd
Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
31 lines
583 B
JavaScript
31 lines
583 B
JavaScript
'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);
|
|
});
|
|
|