aboutsummaryrefslogtreecommitdiff
blob: 420b36d06d8a4e8f130e56c9aa4838f838ff55a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# make sure we can clobber symlinks #612202

addwrite $PWD

ln -s /asdf sym || exit 1
touch file
renameat2-0 0 AT_FDCWD file AT_FDCWD sym || exit 1
[ ! -e file ]
[ ! -L sym ]
[ -e sym ]
test ! -s "${SANDBOX_LOG}"