mirror of
https://github.com/golang/go.git
synced 2025-10-19 19:13:18 +00:00
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 <bcmills@google.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: David Chase <drchase@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
dbc1703781
commit
755b50952c
1 changed files with 3 additions and 0 deletions
|
@ -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...)
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue