summaryrefslogtreecommitdiffstats
path: root/src/cmd/go/testdata/script/get_tilde.txt
blob: 1c3a02965e7d706000f75362c592ed7ce9d0b614 (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

# Paths containing windows short names should be rejected before attempting to fetch.
! go get vcs-test.golang.org/longna~1.dir/thing
stderr 'trailing tilde and digits'
! go get vcs-test.golang.org/longna~1/thing
stderr 'trailing tilde and digits'
! go get vcs-test.golang.org/~9999999/thing
stderr 'trailing tilde and digits'

[short] stop

# A path containing an element that is just a tilde, or a tilde followed by non-digits,
# should attempt to resolve.
! go get vcs-test.golang.org/~glenda/notfound
! stderr 'trailing tilde and digits'
stderr 'unrecognized import path'

! go get vcs-test.golang.org/~glenda2/notfound
! stderr 'trailing tilde and digits'
stderr 'unrecognized import path'

! go get vcs-test.golang.org/~/notfound
! stderr 'trailing tilde and digits'
stderr 'unrecognized import path'