Closed
Description
What version of Go are you using (go version
)?
$ go version go version devel +0f897f916a Tue May 28 02:52:39 2019 +0000 linux/amd64
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env
)?
go env
Output
$ go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/home/cuonglm/.cache/go-build" GOENV="/home/cuonglm/.config/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GONOPROXY="" GONOSUMDB="" GOOS="linux" GOPATH="/home/cuonglm/go" GOPROXY="https://proxy.golang.org,direct" GOROOT="/home/cuonglm/sources/go" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/home/cuonglm/sources/go/pkg/tool/linux_amd64" GCCGO="/usr/local/bin/gccgo" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build895058594=/tmp/go-build -gno-record-gcc-switches"
What did you do?
$ GO111MODULE=on go test cmd/vet
ok cmd/vet 2.463s
$ GO111MODULE=off go test cmd/vet
ok cmd/vet (cached)
What did you expect to see?
GO111MODULE=off go test cmd/vet
won't be cached, the test fail:
$ GO111MODULE=off go test -count=1 cmd/vet
--- FAIL: TestVet (0.48s)
--- FAIL: TestVet/unsafeptr (0.14s)
vet_test.go:153: vet output:
vet_test.go:154: <nil>
--- FAIL: TestVet/print (0.25s)
vet_test.go:162: error check failed:
print.go:169: missing error "Warn call has possible formatting directive %s"
print.go:170: missing error "Warnf call needs 1 arg but has 2 args"
print.go:171: missing error "Warnf format %r has unknown verb r"
print.go:172: missing error "Warnf format %#s has unrecognized flag #"
print.go:173: missing error "Warn2 call has possible formatting directive %s"
print.go:174: missing error "Warnf2 call needs 1 arg but has 2 args"
print.go:175: missing error "Warnf2 format %r has unknown verb r"
print.go:176: missing error "Warnf2 format %#s has unrecognized flag #"
FAIL
FAIL cmd/vet 1.067s
FAIL
What did you see instead?
Test was cached, test pass.