1
0
mirror of https://github.com/golang/go synced 2024-11-12 04:30:22 -07:00

http: adjust test threshold for larger suse buffers

My theory is that suse has larger TCP buffer sizes
by default.  I now check over 100MB, rather than over 2MB.
100MB is ~halfway between the 1MB limit and the 200MB
request that's attempted.

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/4926048
This commit is contained in:
Brad Fitzpatrick 2011-08-24 16:09:49 +04:00
parent bb4cf3f351
commit fa6d038e98

View File

@ -944,7 +944,7 @@ func TestRequestBodyLimit(t *testing.T) {
// the remote side hung up on us before we wrote too much.
_, _ = DefaultClient.Do(req)
if nWritten > limit*2 {
if nWritten > limit*100 {
t.Errorf("handler restricted the request body to %d bytes, but client managed to write %d",
limit, nWritten)
}