From d7ac73c869cce4f8fe5978345d74de94c319b1c0 Mon Sep 17 00:00:00 2001 From: David du Colombier <0intro@gmail.com> Date: Thu, 10 Apr 2014 06:37:30 +0200 Subject: [PATCH] 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 --- src/pkg/runtime/stack_test.go | 3 --- 1 file changed, 3 deletions(-) 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 -- 2.50.0