test-tls-securepair-server: don't shutdown stdout

This commit is contained in:
Ryan Dahl 2011-02-19 16:56:56 -08:00
parent 8b9dbdad27
commit c72ae27be1

View File

@ -117,7 +117,7 @@ server.listen(common.PORT, function() {
}
});
client.stdout.pipe(process.stdout);
client.stdout.pipe(process.stdout, { end: false });
client.on('exit', function(code) {
opensslExitCode = code;