X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/fc63847406c5e99669ce11047d6cc01b837b57ae..3f2d8d683a7a5a31ab01874007ee6a62249bb45b:/testsuite/unsafe-byname.test diff --git a/testsuite/unsafe-byname.test b/testsuite/unsafe-byname.test index ef6bfa7f..61e0e24a 100644 --- a/testsuite/unsafe-byname.test +++ b/testsuite/unsafe-byname.test @@ -4,7 +4,7 @@ # Call directly into unsafe_symlink and test its handling of various filenames -. $srcdir/testsuite/rsync.fns +. "$suitedir/rsync.fns" test_unsafe() { # $1 is the target of a symlink @@ -22,17 +22,22 @@ test_unsafe() { test_unsafe file from safe test_unsafe dir/file from safe test_unsafe dir/./file from safe -test_unsafe dir/. from safe -test_unsafe dir/ from safe +test_unsafe dir/. from safe +test_unsafe dir/ from safe -test_unsafe /etc/passwd from unsafe -test_unsafe //../etc/passwd from unsafe -test_unsafe //./etc/passwd from unsafe +test_unsafe /etc/passwd from unsafe +test_unsafe //../etc/passwd from unsafe +test_unsafe //./etc/passwd from unsafe test_unsafe ./foo from safe test_unsafe ../foo from unsafe test_unsafe ../dest from/dir safe +test_unsafe .. from/file safe +test_unsafe ../.. from/file unsafe +test_unsafe dir/.. from safe +test_unsafe dir/../.. from unsafe + test_unsafe '' from unsafe # Based on tests from unsafe-links by VladimĂ­r Michl