From: David du Colombier <0intro@gmail.com> Date: Thu, 10 Apr 2014 04:37:30 +0000 (+0200) Subject: runtime: no longer skip stack growth test in short mode X-Git-Tag: go1.3beta1~130 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d7ac73c869cce4f8fe5978345d74de94c319b1c0;p=gostls13.git runtime: no longer skip stack growth test in short mode We originally decided to skip this test in short mode to prevent the parallel runtime test to timeout on the Plan 9 builder. This should no longer be required since the issue was fixed in CL 86210043. LGTM=dave, bradfitz R=dvyukov, dave, bradfitz CC=golang-codereviews, rsc https://golang.org/cl/84790044 --- diff --git a/src/pkg/runtime/stack_test.go b/src/pkg/runtime/stack_test.go index f3c531eb93..8add63ad35 100644 --- a/src/pkg/runtime/stack_test.go +++ b/src/pkg/runtime/stack_test.go @@ -123,9 +123,6 @@ func TestStackMem(t *testing.T) { // Test stack growing in different contexts. func TestStackGrowth(t *testing.T) { - if testing.Short() { - t.Skip("skipping test in short mode") - } t.Parallel() var wg sync.WaitGroup