Skip to content

Commit 2305360

Browse files
author
Bryan C. Mills
committed
dashboard: mark all current netbsd builders as affected by golang/go#50138
Since a large fraction of Go tests invoke commands, this issue causes noise on the builders that cannot be easily bypassed or filtered out. Failures matching this issue have been observed on all four of the current NetBSD builders. (The last such failure observed on a non-NetBSD builder was on freebsd-amd64-11_4, and that builder is no longer used; no matching failures have been observed on more recent FreeBSD builders.) Updates golang/go#50138. Change-Id: Ied687a63a55407d19c5f1905e79111d302087937 Reviewed-on: https://go-review.googlesource.com/c/build/+/409595 TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Run-TryBot: Bryan Mills <[email protected]> Auto-Submit: Bryan Mills <[email protected]>
1 parent e382d73 commit 2305360

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

dashboard/builders.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2159,11 +2159,13 @@ func init() {
21592159
HostType: "host-netbsd-amd64-9_0",
21602160
distTestAdjust: noTestDirAndNoReboot,
21612161
tryBot: explicitTrySet("sys"),
2162+
KnownIssues: []int{50138},
21622163
})
21632164
addBuilder(BuildConfig{
21642165
Name: "netbsd-386-9_0",
21652166
HostType: "host-netbsd-386-9_0",
21662167
distTestAdjust: noTestDirAndNoReboot,
2168+
KnownIssues: []int{50138},
21672169
})
21682170
addBuilder(BuildConfig{
21692171
Name: "netbsd-arm-bsiegert",
@@ -2182,7 +2184,8 @@ func init() {
21822184
// The machine is slow.
21832185
"GO_TEST_TIMEOUT_SCALE=10",
21842186
},
2185-
FlakyNet: true,
2187+
FlakyNet: true,
2188+
KnownIssues: []int{50138},
21862189
})
21872190
addBuilder(BuildConfig{
21882191
Name: "netbsd-arm64-bsiegert",
@@ -2193,7 +2196,8 @@ func init() {
21932196
// The machine is slow.
21942197
"GO_TEST_TIMEOUT_SCALE=10",
21952198
},
2196-
FlakyNet: true,
2199+
FlakyNet: true,
2200+
KnownIssues: []int{50138},
21972201
})
21982202
addBuilder(BuildConfig{
21992203
Name: "plan9-386",

0 commit comments

Comments
 (0)