aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/mod_retract_rename.txt
blob: f54742c5232253b6d4f44927fab010f5770d24a7 (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
# Populate go.sum.
go get -d

# 'go list -m -retracted' should load retractions, even if the version
# containing retractions has a different module path.
go list -m -retracted -f '{{with .Retracted}}retracted{{end}}' example.com/retract/rename

# 'go list -m -u' should load retractions, too.
go list -m -u -f '{{with .Retracted}}retracted{{end}}' example.com/retract/rename

# 'go get' should warn about the retracted version.
go get -d
stderr '^go: warning: example.com/retract/rename@v1.0.0-bad: retracted by module author: bad$'

# We can't upgrade, since this latest version has a different module path.
! go get -d example.com/retract/rename
stderr 'module declares its path as: example.com/retract/newname'

-- go.mod --
module example.com/use

go 1.16

require example.com/retract/rename v1.0.0-bad
-- use.go --
package use

import _ "example.com/retract/rename"