Commit 0c53b4ec authored by Ian Lance Taylor's avatar Ian Lance Taylor Committed by Russ Cox

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: 's avatarRuss Cox <rsc@golang.org>
parent 68e39030
...@@ -60,6 +60,12 @@ var gdb = "gdb" // Might be "ggdb" on Darwin, because gdb no longer part of XCod ...@@ -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 // go test debug_test.go -args -u -d
func TestNexting(t *testing.T) { 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) testenv.MustHaveGoBuild(t)
if !*delve && !*force && !(runtime.GOOS == "linux" && runtime.GOARCH == "amd64") { if !*delve && !*force && !(runtime.GOOS == "linux" && runtime.GOARCH == "amd64") {
......
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