]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: disable TestNexting in short mode
authorIan Lance Taylor <iant@golang.org>
Wed, 11 Oct 2017 00:19:56 +0000 (17:19 -0700)
committerRuss Cox <rsc@golang.org>
Wed, 11 Oct 2017 03:11:50 +0000 (03:11 +0000)
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>
src/cmd/compile/internal/ssa/debug_test.go

index e1b8e38ece39ed6ba6a8cef45ced98931f20f385..238745466fc23673d2e4ba6dc6302cd99360bac4 100644 (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") {