From: David du Colombier <0intro@gmail.com> Date: Fri, 21 Mar 2014 17:13:23 +0000 (+0100) Subject: runtime: skip stack growth test in short mode X-Git-Tag: go1.3beta1~306 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f182a6eec895a6d916ed61e9d6f50a84fd970e69;p=gostls13.git runtime: skip stack growth test in short mode LGTM=dvyukov R=dvyukov CC=golang-codereviews https://golang.org/cl/78410043 --- diff --git a/src/pkg/runtime/stack_test.go b/src/pkg/runtime/stack_test.go index 6b38af82c1..e131ed94ed 100644 --- a/src/pkg/runtime/stack_test.go +++ b/src/pkg/runtime/stack_test.go @@ -123,6 +123,9 @@ 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