]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: no longer skip stack growth test in short mode
authorDavid du Colombier <0intro@gmail.com>
Thu, 10 Apr 2014 04:37:30 +0000 (06:37 +0200)
committerDavid du Colombier <0intro@gmail.com>
Thu, 10 Apr 2014 04:37:30 +0000 (06:37 +0200)
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

index f3c531eb9323c1bad283ed4193126014ef0d3950..8add63ad35526af673bb2f7a82e2ae854f94bb7a 100644 (file)
@@ -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