github.com/gagliardetto/golang-go@v0.0.0-20201020153340-53909ea70814/cmd/go/testdata/script/mod_vcs_missing.txt (about) 1 [exec:bzr] skip 'tests NOT having bzr' 2 [!net] skip 3 4 env GO111MODULE=on 5 env GOPROXY=direct 6 7 cd empty 8 ! go list launchpad.net/gocheck 9 stderr '"bzr": executable file not found' 10 cd .. 11 12 # 1.11 used to give the cryptic error "cannot find module for path" here, but 13 # only for a main package. 14 cd main 15 ! go build 16 stderr '"bzr": executable file not found' 17 cd .. 18 19 -- empty/go.mod -- 20 module m 21 -- main/go.mod -- 22 module m 23 -- main/main.go -- 24 package main 25 26 import _ "launchpad.net/gocheck" 27 28 func main() {}