aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/stack_test.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2019-05-15 14:31:10 -0400
committerRuss Cox <rsc@golang.org>2019-05-16 03:25:03 +0000
commit018d9b42a789809198bb0bcc338d9948a479b108 (patch)
treea9f9709933f6124c88fe2d7644a4c01577ae0adc /src/runtime/stack_test.go
parentdccd5da08eb45923df9fb9ee2a05a9fbbe8c185c (diff)
downloadgo-018d9b42a789809198bb0bcc338d9948a479b108.tar.xz
runtime: disable some tests in -quick mode
Speeds up the "go test runtime -cpu=1,2,4 -short -quick" phase of all.bash. For #26473. Change-Id: I090f5a5aa754462b3253a2156dc31fa67ce7af2a Reviewed-on: https://go-review.googlesource.com/c/go/+/177399 Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Austin Clements <austin@google.com>
Diffstat (limited to 'src/runtime/stack_test.go')
-rw-r--r--src/runtime/stack_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/runtime/stack_test.go b/src/runtime/stack_test.go
index 7bc63967bb..df73b3a1d5 100644
--- a/src/runtime/stack_test.go
+++ b/src/runtime/stack_test.go
@@ -78,6 +78,10 @@ func TestStackMem(t *testing.T) {
// Test stack growing in different contexts.
func TestStackGrowth(t *testing.T) {
+ if *flagQuick {
+ t.Skip("-quick")
+ }
+
if GOARCH == "wasm" {
t.Skip("fails on wasm (too slow?)")
}