aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/build_exe.txt
blob: fd13259fcc716fb903f5fe6b29b5c7477952a361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# go build with -o and -buildmode=exe should on a non-main package should throw an error

! go build -buildmode=exe -o out$GOEXE not_main
stderr '-buildmode=exe requires exactly one main package'
! exists out$GOEXE
! go build -buildmode=exe -o out$GOEXE main_one main_two
stderr '-buildmode=exe requires exactly one main package'
! exists out$GOEXE

-- not_main/not_main.go --
package not_main

func F() {}
-- main_one/main_one.go --
package main

func main() {}
-- main_two/main_two.go --
package main

func main() {}