Browse Source

Merge pull request #1936 from xiang90/fix_test

pkg/transport: change write size from 1MB -> 5MB
Xiang Li 11 years ago
parent
commit
b8ab2b0b5c
2 changed files with 2 additions and 2 deletions
  1. 1 1
      pkg/transport/timeout_dialer_test.go
  2. 1 1
      pkg/transport/timeout_listener_test.go

+ 1 - 1
pkg/transport/timeout_dialer_test.go

@@ -43,7 +43,7 @@ func TestReadWriteTimeoutDialer(t *testing.T) {
 	defer conn.Close()
 	defer conn.Close()
 
 
 	// fill the socket buffer
 	// fill the socket buffer
-	data := make([]byte, 1024*1024)
+	data := make([]byte, 5*1024*1024)
 	timer := time.AfterFunc(d.wtimeoutd*5, func() {
 	timer := time.AfterFunc(d.wtimeoutd*5, func() {
 		t.Fatal("wait timeout")
 		t.Fatal("wait timeout")
 	})
 	})

+ 1 - 1
pkg/transport/timeout_listener_test.go

@@ -52,7 +52,7 @@ func TestWriteReadTimeoutListener(t *testing.T) {
 	defer conn.Close()
 	defer conn.Close()
 
 
 	// fill the socket buffer
 	// fill the socket buffer
-	data := make([]byte, 1024*1024)
+	data := make([]byte, 5*1024*1024)
 	timer := time.AfterFunc(wln.wtimeoutd*5, func() {
 	timer := time.AfterFunc(wln.wtimeoutd*5, func() {
 		t.Fatal("wait timeout")
 		t.Fatal("wait timeout")
 	})
 	})