"windows/arm64": true,
}
-// List of platforms which are supported but not complete yet. These get
-// filtered out of cgoEnabled for 'dist list'. See go.dev/issue/28944.
-var incomplete = map[string]bool{
- "linux/sparc64": true,
-}
-
// List of platforms that are marked as broken ports.
// These require -force flag to build, and also
// get filtered out of cgoEnabled for 'dist list'.
// See go.dev/issue/56679.
-var broken = map[string]bool{}
+var broken = map[string]bool{
+ "linux/sparc64": true, // An incomplete port. See CL 132155.
+}
// List of platforms which are first class ports. See go.dev/issue/38874.
var firstClass = map[string]bool{
var plats []string
for p := range cgoEnabled {
- if broken[p] || incomplete[p] {
+ if broken[p] {
continue
}
plats = append(plats, p)
if t.failed {
fmt.Println("\nFAILED")
xexit(1)
- } else if incomplete[goos+"/"+goarch] {
- // The test succeeded, but consider it as failed so we don't
- // forget to remove the port from the incomplete map once the
- // port is complete.
- fmt.Println("\nFAILED (incomplete port)")
- xexit(1)
} else if t.partial {
fmt.Println("\nALL TESTS PASSED (some were excluded)")
} else {