Commit 72185093 authored by Russ Cox's avatar Russ Cox

runtime: increase timeout in TestStackGrowth

It looks like maybe on slower builders 4 seconds is not enough.
Trying to get rid of the flaky failures.

TBR=iant
CC=golang-codereviews
https://golang.org/cl/86870044
parent e9ad3bf0
......@@ -162,7 +162,7 @@ func TestStackGrowth(t *testing.T) {
GC()
select {
case <-done:
case <-time.After(4 * time.Second):
case <-time.After(20 * time.Second):
t.Fatal("finalizer did not run")
}
}()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment