aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/mod_retract_incompatible.txt
blob: 61538e8024445c60874850b5ca6d501b7f19606d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# The current version of a module should not be considered when loading
# retractions. If the current version is +incompatible, we should not prefer
# +incompatible versions when looking for retractions.
# Verifies #42601.

go mod init m

# Request a +incompatible version retracted in v1.0.0.
go get -d example.com/retract/incompatible@v2.0.0+incompatible
stderr '^go: warning: example.com/retract/incompatible@v2.0.0\+incompatible: retracted by module author$'

# We should still see a warning if the +incompatible was previously in the
# build list.
go get -d example.com/retract/incompatible@v2.0.0+incompatible
stderr '^go: warning: example.com/retract/incompatible@v2.0.0\+incompatible: retracted by module author$'