1
0
mirror of https://github.com/golang/go synced 2024-11-18 08:24:44 -07:00

runtime: skip stack growth test in short mode

LGTM=dvyukov
R=dvyukov
CC=golang-codereviews
https://golang.org/cl/78410043
This commit is contained in:
David du Colombier 2014-03-21 18:13:23 +01:00
parent 050b60a369
commit f182a6eec8

View File

@ -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