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:
parent
050b60a369
commit
f182a6eec8
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user