From 755b50952c9571202322bf63a42254ea8ea5655c Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Wed, 17 Apr 2019 08:32:33 -0400 Subject: [PATCH] cmd/compile/internal/ssa: skip TestNexting/gdb-dbg-i22558 This test fails frequently in the longtest builder, and the failures on the build dashboard have masked two other regressions so far. Let's skip it until it can be fixed. Updates #31263 Change-Id: I82bae216ebc3c5fd395c27c72c196334a130af7d Reviewed-on: https://go-review.googlesource.com/c/go/+/172423 Run-TryBot: Bryan C. Mills Reviewed-by: Brad Fitzpatrick Reviewed-by: David Chase TryBot-Result: Gobot Gobot --- src/cmd/compile/internal/ssa/debug_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cmd/compile/internal/ssa/debug_test.go b/src/cmd/compile/internal/ssa/debug_test.go index 8db2f8ef41..091086f3b9 100644 --- a/src/cmd/compile/internal/ssa/debug_test.go +++ b/src/cmd/compile/internal/ssa/debug_test.go @@ -165,6 +165,9 @@ func TestNexting(t *testing.T) { // then runs the debugger on the resulting binary, with any comment-specified actions matching tag triggered. func subTest(t *testing.T, tag string, basename string, gcflags string, moreargs ...string) { t.Run(tag+"-"+basename, func(t *testing.T) { + if t.Name() == "TestNexting/gdb-dbg-i22558" { + testenv.SkipFlaky(t, 31263) + } testNexting(t, basename, tag, gcflags, 1000, moreargs...) }) } -- 2.48.1