diff options
| author | Russ Cox <rsc@golang.org> | 2023-05-18 21:24:07 -0400 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-05-19 01:36:29 +0000 |
| commit | e95982fe306da84ef6e9b90293d4adb95cbfec26 (patch) | |
| tree | 5869a6a786912c68b198507425844933ce8d26b6 /src/cmd/api | |
| parent | 3ca52f4c319e56986586e3d519924876320b29fb (diff) | |
| download | go-e95982fe306da84ef6e9b90293d4adb95cbfec26.tar.xz | |
cmd/api: skip TestIssue21181
It is incredibly slow, taking half as long as the regular cmd/api checks
and over 5 minutes on plan9-arm. Leave it for the longtest builders.
Change-Id: Ic8bd420f174268d0b6a13d84e7bd364f6c13cf41
Reviewed-on: https://go-review.googlesource.com/c/go/+/496375
Auto-Submit: Russ Cox <rsc@golang.org>
Run-TryBot: Russ Cox <rsc@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Austin Clements <austin@google.com>
Diffstat (limited to 'src/cmd/api')
| -rw-r--r-- | src/cmd/api/api_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cmd/api/api_test.go b/src/cmd/api/api_test.go index 8b1b7c3ce8..53ae6fd2c8 100644 --- a/src/cmd/api/api_test.go +++ b/src/cmd/api/api_test.go @@ -210,6 +210,9 @@ func BenchmarkAll(b *testing.B) { } func TestIssue21181(t *testing.T) { + if testing.Short() { + t.Skip("skipping with -short") + } if *flagCheck { // slow, not worth repeating in -check t.Skip("skipping with -check set") |
