aboutsummaryrefslogtreecommitdiff
blob: d0fbe8ae4574fe1ddae3b8bd1b0b87f65ceead45 (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
renameat-0 0 AT_FDCWD file AT_FDCWD sym || exit 1
[ ! -e file ]
[ ! -L sym ]
[ -e sym ]
test ! -s "${SANDBOX_LOG}"