minimal-linux-script/busybox-1.33.0/testsuite/cp/cp-does-not-copy-unreadable-file
2023-11-16 23:19:36 -05:00

12 lines
179 B
Plaintext

touch foo
chmod a-r foo
set +e
if test `id -u` = 0; then
# run as user with nonzero uid
setuidgid 1 busybox cp foo bar
else
busybox cp foo bar
fi
set -e
test ! -f bar