Browse Source

test: fix flaky test-net-write-slow

Increase socket timeout so that there is enough time to reliably run the
test on FreeBSD.

Fixes: https://github.com/nodejs/node/issues/7516
PR-URL: https://github.com/nodejs/node/pull/7555
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
v6.x
Rich Trott 9 years ago
committed by Evan Lucas
parent
commit
97167291e7
  1. 2
      test/parallel/test-net-write-slow.js

2
test/parallel/test-net-write-slow.js

@ -11,7 +11,7 @@ var buf = Buffer.alloc(SIZE, 'a');
var server = net.createServer(function(socket) {
socket.setNoDelay();
socket.setTimeout(1000);
socket.setTimeout(9999);
socket.on('timeout', function() {
assert.fail(null, null, 'flushed: ' + flushed +
', received: ' + received + '/' + SIZE * N);

Loading…
Cancel
Save