aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/mod_run_pkgerror.txt
blob: 48f900dd3466af59d632e5a713c129ca407051d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# https://golang.org/issue/39986: files reported as invalid by go/build should
# be listed in InvalidGoFiles.

go list -e -f '{{.Incomplete}}{{"\n"}}{{.Error}}{{"\n"}}{{.InvalidGoFiles}}{{"\n"}}' .
stdout '^true\nfound packages m \(m\.go\) and main \(main\.go\) in '$PWD'\n\[main.go\]\n'


# https://golang.org/issue/45827: 'go run .' should report the same package
# errors as 'go build' and 'go list'.

! go build
stderr '^found packages m \(m\.go\) and main \(main\.go\) in '$PWD'$'

! go list .
stderr '^found packages m \(m\.go\) and main \(main\.go\) in '$PWD'$'

! go run .
! stderr 'no packages loaded'
stderr '^found packages m \(m\.go\) and main \(main\.go\) in '$PWD'$'

! go run ./...
! stderr 'no packages loaded'
stderr '^found packages m \(m\.go\) and main \(main\.go\) in '$PWD'$'

-- go.mod --
module m

go 1.17
-- m.go --
package m
-- main.go --
package main