blob: b2fb5cae4f8f43358893a1c85f27a2b14b8c446f [file] [log] [blame]
// Copyright 2022 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Command broken lists the current Go builders with known issues.
//
// To test this program, cd to its directory and run:
//
// go mod init
// go get golang.org/x/build/dashboard@HEAD
// go run .
// rm go.mod go.sum
package main
import (
"fmt"
"golang.org/x/build/dashboard"
)
func main() {
for _, b := range dashboard.Builders {
if len(b.KnownIssues) > 0 {
fmt.Println(b.Name)
}
}
}