1
0
mirror of https://github.com/golang/go synced 2024-11-17 21:44:43 -07:00

cmd/vet/all: update whitelists

Change-Id: Ic66eb2939d83559610e62cbb181a8faa6193ecc4
Reviewed-on: https://go-review.googlesource.com/32426
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Josh Bleecher Snyder 2016-10-31 11:41:34 -07:00
parent 4de3df8c95
commit 35d342eb7d
3 changed files with 1 additions and 17 deletions

View File

@ -26,7 +26,7 @@ cmd/cover/testdata/test.go: unreachable code
fmt/fmt_test.go: arg nil for printf verb %s of wrong type: untyped nil
encoding/json/decode_test.go: struct field m has json tag but is not exported
encoding/json/decode_test.go: struct field m2 has json tag but is not exported
encoding/json/tagkey_test.go: struct field tag ":\"BadFormat\"" not compatible with reflect.StructTag.Get: bad syntax for struct tag key
encoding/json/tagkey_test.go: struct field tag `:"BadFormat"` not compatible with reflect.StructTag.Get: bad syntax for struct tag key
runtime/testdata/testprog/deadlock.go: unreachable code
runtime/testdata/testprog/deadlock.go: unreachable code
sync/cond_test.go: assignment copies lock value to c2: sync.Cond contains sync.noCopy

View File

@ -1,11 +1,3 @@
// plan9/386-specific vet whitelist. See readme.txt for details.
runtime/sys_plan9_386.s: [386] setldt: function setldt missing Go declaration
syscall/asm_plan9_386.s: [386] Syscall: 8(SP) should be a1+4(FP)
syscall/asm_plan9_386.s: [386] Syscall: 4(SP) should be trap+0(FP)
syscall/asm_plan9_386.s: [386] Syscall6: 8(SP) should be a1+4(FP)
syscall/asm_plan9_386.s: [386] Syscall6: 4(SP) should be trap+0(FP)
syscall/asm_plan9_386.s: [386] RawSyscall: 8(SP) should be a1+4(FP)
syscall/asm_plan9_386.s: [386] RawSyscall: 4(SP) should be trap+0(FP)
syscall/asm_plan9_386.s: [386] RawSyscall6: 8(SP) should be a1+4(FP)
syscall/asm_plan9_386.s: [386] RawSyscall6: 4(SP) should be trap+0(FP)

View File

@ -2,11 +2,3 @@
runtime/sys_plan9_amd64.s: [amd64] setldt: function setldt missing Go declaration
runtime/sys_plan9_amd64.s: [amd64] settls: function settls missing Go declaration
syscall/asm_plan9_amd64.s: [amd64] Syscall: 16(SP) should be a1+8(FP)
syscall/asm_plan9_amd64.s: [amd64] Syscall: 8(SP) should be trap+0(FP)
syscall/asm_plan9_amd64.s: [amd64] Syscall6: 16(SP) should be a1+8(FP)
syscall/asm_plan9_amd64.s: [amd64] Syscall6: 8(SP) should be trap+0(FP)
syscall/asm_plan9_amd64.s: [amd64] RawSyscall: 16(SP) should be a1+8(FP)
syscall/asm_plan9_amd64.s: [amd64] RawSyscall: 8(SP) should be trap+0(FP)
syscall/asm_plan9_amd64.s: [amd64] RawSyscall6: 16(SP) should be a1+8(FP)
syscall/asm_plan9_amd64.s: [amd64] RawSyscall6: 8(SP) should be trap+0(FP)