test: fix test-tls-zero-clear-in flakiness

It can happen that the server-side socket is destroyed before the
client-side socket has gracefully closed, thus causing a 'ECONNRESET'
error in this socket. To solve this, also close gracefully in the server
side too.

PR-URL: https://github.com/nodejs/node/pull/4888
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Fedor Indutny <fedor@indutny.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Santiago Gimeno 2016-01-27 00:44:36 +01:00 committed by Rich Trott
parent efd33a2a9a
commit 795eeb1ccf

View File

@ -22,7 +22,7 @@ var server = tls.createServer({
}, function(c) {
// Nop
setTimeout(function() {
c.destroy();
c.end();
server.close();
}, 20);
}).listen(common.PORT, function() {