aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/list_load_err.txt
blob: b3b72713e5499284eaf9803b2d236221b8473bd8 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# go list -e -deps should list imports from any file it can read, even if
# other files in the same package cause go/build.Import to return an error.
# Verfifies golang.org/issue/38568


go list -e -deps ./scan
stdout m/want


go list -e -deps ./multi
stdout m/want


go list -e -deps ./constraint
stdout m/want


[cgo] go list -e -test -deps ./cgotest
[cgo] stdout m/want


[cgo] go list -e -deps ./cgoflag
[cgo] stdout m/want

-- go.mod --
module m

go 1.14

-- want/want.go --
package want

-- scan/scan.go --
// scan error
ʕ◔ϖ◔ʔ

-- scan/good.go --
package scan

import _ "m/want"

-- multi/a.go --
package a

-- multi/b.go --
package b

import _ "m/want"

-- constraint/constraint.go --
// +build !!nope

package constraint

-- constraint/good.go --
package constraint

import _ "m/want"

-- cgotest/cgo_test.go --
package cgo_test

// cgo is not allowed in tests.
// See golang.org/issue/18647

import "C"
import (
	"testing"
	_ "m/want"
)

func Test(t *testing.T) {}

-- cgoflag/cgoflag.go --
package cgoflag

// #cgo ʕ◔ϖ◔ʔ:

import _ "m/want"