Commit f182a6ee authored by David du Colombier's avatar David du Colombier

runtime: skip stack growth test in short mode

LGTM=dvyukov
R=dvyukov
CC=golang-codereviews
https://golang.org/cl/78410043
parent 050b60a3
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment