mirror of
https://github.com/golang/go
synced 2024-11-12 04:40:22 -07:00
cmd/compile: disable TestNexting in short mode
Updates #22206 Change-Id: If75feddc01f8f86f294929fa7081c70eb15e581d Reviewed-on: https://go-review.googlesource.com/69790 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Russ Cox <rsc@golang.org>
This commit is contained in:
parent
68e390304e
commit
0c53b4ec4f
@ -60,6 +60,12 @@ var gdb = "gdb" // Might be "ggdb" on Darwin, because gdb no longer part of XCod
|
||||
// go test debug_test.go -args -u -d
|
||||
|
||||
func TestNexting(t *testing.T) {
|
||||
// Skip this test in an ordinary run.bash. Too many things
|
||||
// can cause it to break.
|
||||
if testing.Short() {
|
||||
t.Skip("skipping in short mode; see issue #22206")
|
||||
}
|
||||
|
||||
testenv.MustHaveGoBuild(t)
|
||||
|
||||
if !*delve && !*force && !(runtime.GOOS == "linux" && runtime.GOARCH == "amd64") {
|
||||
|
Loading…
Reference in New Issue
Block a user