1
0
mirror of https://github.com/golang/go synced 2024-09-24 19:40:12 -06: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:
Ian Lance Taylor 2017-10-10 17:19:56 -07:00 committed by Russ Cox
parent 68e390304e
commit 0c53b4ec4f

View File

@ -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") {