aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/list_swigcxx.txt
blob: c6acd9ecdbabf4b467c37fd262344be45dac8fec (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
# go list should not report SWIG-generated C++ files in CompiledGoFiles.

[!exec:swig] skip
[!exec:g++] skip

# CompiledGoFiles should contain 4 files:
#  a.go
#  a.swigcxx.go
#  _cgo_gotypes.go
#  a.cgo1.go

go list -f '{{.CompiledGoFiles}}' -compiled=true example/swig

# These names we see here, other than a.go, will be from the build cache,
# so we just count them.
stdout a\.go
stdout -count=3 $GOCACHE

-- go.mod --
module example

go 1.16

-- swig/a.go --
package swig

-- swig/a.swigcxx --