We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08bd728 commit 8fcb5f0Copy full SHA for 8fcb5f0
gopls/internal/test/marker/marker_test.go
@@ -87,7 +87,11 @@ func TestMain(m *testing.M) {
87
func Test(t *testing.T) {
88
if testing.Short() {
89
builder := os.Getenv("GO_BUILDER_NAME")
90
- if strings.HasPrefix(builder, "darwin-") || builder == "solaris-amd64-oraclerel" {
+ // Note that HasPrefix(builder, "darwin-" only matches legacy builders.
91
+ // LUCI builder names start with x_tools-goN.NN.
92
+ // We want to exclude solaris on both legacy and LUCI builders, as
93
+ // it is timing out.
94
+ if strings.HasPrefix(builder, "darwin-") || strings.Contains(builder, "solaris") {
95
t.Skip("golang/go#64473: skipping with -short: this test is too slow on darwin and solaris builders")
96
}
97
0 commit comments