commit | b73dd63e49e996127a1ecb08deddc815dca91a62 | [log] [tgz] |
---|---|---|
author | Suharsh Sivakumar <suharshs@google.com> | Fri Sep 18 13:07:37 2015 -0700 |
committer | Suharsh Sivakumar <suharshs@google.com> | Fri Sep 18 13:07:37 2015 -0700 |
tree | 282adbde9e35d6fcc66c33a11cb323cf403652b6 | |
parent | f8c080ff9d50a3f1a1df01217ed951e541d344ad [diff] |
flow,xproxyd: Bump up leakWaitTime to 250ms. Change-Id: Iccfa704f41c5a9ec2de71b71b3faa497b7ac8890
diff --git a/runtime/internal/flow/conn/conn_test.go b/runtime/internal/flow/conn/conn_test.go index b5b6eeb..c9ba7c0 100644 --- a/runtime/internal/flow/conn/conn_test.go +++ b/runtime/internal/flow/conn/conn_test.go
@@ -19,7 +19,7 @@ "v.io/x/ref/test/goroutines" ) -const leakWaitTime = 100 * time.Millisecond +const leakWaitTime = 250 * time.Millisecond var randData []byte
diff --git a/runtime/internal/flow/manager/manager_test.go b/runtime/internal/flow/manager/manager_test.go index 9752a56..cce80f9 100644 --- a/runtime/internal/flow/manager/manager_test.go +++ b/runtime/internal/flow/manager/manager_test.go
@@ -26,7 +26,7 @@ test.Init() } -const leakWaitTime = 100 * time.Millisecond +const leakWaitTime = 250 * time.Millisecond func TestDirectConnection(t *testing.T) { defer goroutines.NoLeaks(t, leakWaitTime)()
diff --git a/services/xproxyd/proxy_test.go b/services/xproxyd/proxy_test.go index bb85a2b..960e533 100644 --- a/services/xproxyd/proxy_test.go +++ b/services/xproxyd/proxy_test.go
@@ -25,7 +25,7 @@ ) const ( - leakWaitTime = 100 * time.Millisecond + leakWaitTime = 250 * time.Millisecond pollTime = 50 * time.Millisecond )