1
0
mirror of https://github.com/golang/go synced 2024-11-12 08:10:21 -07:00

cmd/vet: exclude windows/arm from cmd/vet

Updates #27103

Change-Id: I1f7d198879e5912661e4156a86e13de2698a5473
Reviewed-on: https://go-review.googlesource.com/130055
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Jordan Rhee 2018-08-20 12:46:43 -07:00 committed by Brad Fitzpatrick
parent e8f49aa80e
commit c589b9ec4e

View File

@ -198,6 +198,12 @@ func (p platform) vet() {
return
}
if p.os == "windows" && p.arch == "arm" {
// TODO(jordanrh1): enable as soon as the windows/arm port has fully landed
fmt.Println("skipping windows/arm")
return
}
var buf bytes.Buffer
fmt.Fprintf(&buf, "go run main.go -p %s\n", p)