summaryrefslogtreecommitdiff
path: root/libgo/go/cmd/go/testdata/script/install_cleans_build.txt
blob: b8d322de629899ea638dddc9dd25ae25f6f65ad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 'go install' with no arguments should clean up after go build
cd mycmd
go build
exists mycmd$exe
go install
! exists mycmd$exe

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

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

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