aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/install_cleans_build.txt
blob: dc85eb8ceffaf0d343488291c9768c54226c400f (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
env GO111MODULE=off
[short] skip

# 'go install' with no arguments should clean up after go build
cd mycmd
go build
exists mycmd$GOEXE
go install
! exists mycmd$GOEXE

# 'go install mycmd' does not clean up, even in the mycmd directory
go build
exists mycmd$GOEXE
go install mycmd
exists mycmd$GOEXE

# 'go install mycmd' should not clean up in an unrelated current directory either
cd ..
cp mycmd/mycmd$GOEXE mycmd$GOEXE
go install mycmd
exists mycmd$GOEXE

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