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 9ffd5f3 commit 41660d0Copy full SHA for 41660d0
src/cmd/vet/vet_test.go
@@ -106,8 +106,19 @@ func TestVet(t *testing.T) {
106
t.Run(pkg, func(t *testing.T) {
107
t.Parallel()
108
109
+ // Skip for now, pending investigation.
110
+ if pkg == "cgo" {
111
+ t.Skip("cgo test disabled -- github.com/golang/go/issues/28829")
112
+ return
113
+ }
114
+
115
cmd := vetCmd(t, "-printfuncs=Warn,Warnf", pkg)
116
117
+ // The asm test assumes amd64.
118
+ if pkg == "asm" {
119
+ cmd.Env = append(cmd.Env, "GOOS=linux", "GOARCH=amd64")
120
121
122
dir := filepath.Join("testdata/src", pkg)
123
gos, err := filepath.Glob(filepath.Join(dir, "*.go"))
124
if err != nil {
0 commit comments