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