diff options
author | Martin Pool <mbp@samba.org> | 2002-03-22 06:07:50 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-03-22 06:07:50 +0000 |
commit | 79c9d8a1803d0b7437bd88bc9ee84b91886bcbe4 (patch) | |
tree | e24a94941bd0f163e179fef74940ef56243a0495 /testsuite/chown.test | |
parent | 7d8219327b7d79406869cd2462eaa75e31c26d2c (diff) | |
download | rsync-79c9d8a1803d0b7437bd88bc9ee84b91886bcbe4.tar.gz rsync-79c9d8a1803d0b7437bd88bc9ee84b91886bcbe4.tar.bz2 rsync-79c9d8a1803d0b7437bd88bc9ee84b91886bcbe4.zip |
Proper messages for skipped tests.
Diffstat (limited to 'testsuite/chown.test')
-rw-r--r-- | testsuite/chown.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/chown.test b/testsuite/chown.test index 751edbe2..9175bc33 100644 --- a/testsuite/chown.test +++ b/testsuite/chown.test @@ -26,10 +26,10 @@ name2="$fromdir/name2" echo "This is the file" > "$name1" echo "This is the other file" > "$name2" -chown 5000 "$name1" || test_skipped "Can't chown" -chown 5001 "$name2" || test_skipped "Can't chown" -chgrp 5002 "$name1" || test_skipped "Can't chgrp" -chgrp 5003 "$name2" || test_skipped "Can't chgrp" +chown 5000 "$name1" || test_skipped "Can't chown (probably need root)" +chown 5001 "$name2" || test_skipped "Can't chown (probably need root)" +chgrp 5002 "$name1" || test_skipped "Can't chgrp (probably need root)" +chgrp 5003 "$name2" || test_skipped "Can't chgrp (probably need root)" checkit "rsync -aHvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" |