perhaps a better fix
[oweals/busybox.git] / testsuite / cp / cp-does-not-copy-unreadable-file
1 touch foo
2 chmod a-r foo
3 set +e
4 busybox cp foo bar
5 set -e
6 test ! -f bar