Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-08-09 02:01:38 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2012-08-15 01:11:28 +0400
commitbcb5bdebe7731739daa720c5bcc2728314db0534 (patch)
tree327cf31a834cbc7134bae10778cd94877da260da /test
parent786e1e87129611523cd7cbf255a479fe36dcba66 (diff)
test: raise pummel/test-net-throttle write req size
pummel/test-net-throttle assumes that a couple of big write requests result in some of them getting queued because the kernel's send buffer fills up. Said assumption breaks on systems with large send buffers. Raise the size of the write request to ameliorate the issue. This is a back-port of commit 6770555 from the master branch.
Diffstat (limited to 'test')
-rw-r--r--test/pummel/test-net-throttle.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pummel/test-net-throttle.js b/test/pummel/test-net-throttle.js
index 3bb7ea2c636..29fd184916f 100644
--- a/test/pummel/test-net-throttle.js
+++ b/test/pummel/test-net-throttle.js
@@ -26,7 +26,7 @@ var common = require('../common');
var assert = require('assert');
var net = require('net');
-var N = 160 * 1024;
+var N = 1024 * 1024;
var part_N = N / 3;
var chars_recved = 0;
var npauses = 0;