diff options
| author | Dmitriy Vyukov <dvyukov@google.com> | 2013-08-06 14:43:36 +0400 |
|---|---|---|
| committer | Dmitriy Vyukov <dvyukov@google.com> | 2013-08-06 14:43:36 +0400 |
| commit | 429a67e30033935d45e368d32b56dedb8c010fee (patch) | |
| tree | 8fb4a8d5a58d22fc8ea26954a062d8e6c01c5023 /src/pkg | |
| parent | 04b1cfa94635f18462b8a076cebacc5e08d92631 (diff) | |
| download | go-429a67e30033935d45e368d32b56dedb8c010fee.tar.xz | |
net: fix intentional build breakage introduced in 12413043
R=alex.brainman
CC=golang-dev
https://golang.org/cl/12502044
Diffstat (limited to 'src/pkg')
| -rw-r--r-- | src/pkg/net/tcp_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/net/tcp_test.go b/src/pkg/net/tcp_test.go index dedd41df94..c2a3bb3e11 100644 --- a/src/pkg/net/tcp_test.go +++ b/src/pkg/net/tcp_test.go @@ -330,7 +330,7 @@ func TestTCPConcurrentAccept(t *testing.T) { } func TestTCPReadWriteMallocs(t *testing.T) { - maxMallocs := 0 + maxMallocs := 10000 switch runtime.GOOS { // Add other OSes if you know how many mallocs they do. case "windows": |
