Commit a7d7f52a authored by Wayne Davison's avatar Wayne Davison

Use "|| true" in our `xattr` test runs.

parent 847ddaf0
......@@ -18,7 +18,7 @@ case $0 in
$RSYNC --version | grep ", xattrs" >/dev/null || test_skipped "Rsync needs xattrs for fake device tests"
RSYNC="$RSYNC --fake-super"
TLS_ARGS="$TLS_ARGS --fake-super"
case "`xattr 2>&1`" in
case "`xattr 2>&1 || true`" in
*--list:*)
chown() {
own=$1
......
......@@ -19,7 +19,7 @@ case $0 in
$RSYNC --version | grep ", xattrs" >/dev/null || test_skipped "Rsync needs xattrs for fake device tests"
RSYNC="$RSYNC --fake-super"
TLS_ARGS="$TLS_ARGS --fake-super"
case "`xattr 2>&1`" in
case "`xattr 2>&1 || true`" in
*--list:*)
mknod() {
fn="$1"
......
......@@ -10,7 +10,7 @@ lnkdir="$tmpdir/lnk"
$RSYNC --version | grep ", xattrs" >/dev/null || test_skipped "Rsync is configured without xattr support"
case "`xattr 2>&1`" in
case "`xattr 2>&1 || true`" in
*--list:*)
xset() {
xnam="$1"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment