node/test/parallel/test-regress-GH-746.js
Santiago Gimeno 720b8f04be test: move some test from sequential to parallel
The only test with modifications is `test-stdin-child-proc` that was
passing when it should not because the exit code of the child process
was not being checked.

PR-URL: https://github.com/nodejs/node/pull/6087
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
2016-04-26 12:15:55 -07:00

30 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);
});