summaryrefslogtreecommitdiff
path: root/runtests.sh
diff options
context:
space:
mode:
authorBen RUBSON <6764151+benrubson@users.noreply.github.com>2020-07-12 21:36:02 +0200
committerGitHub <noreply@github.com>2020-07-12 12:36:02 -0700
commitde7e4d00ab899550017318e1077d4c33ce57f931 (patch)
tree4d9de1cdd11b2d4ad66837cd3831d954df4d2631 /runtests.sh
parent374cc1be74834ff9cc380a0427401007b9d62eb3 (diff)
downloadrsync-de7e4d00ab899550017318e1077d4c33ce57f931.tar.gz
Improve FreeBSD tests (#61)
Improve FreeBSD tests & use a ZFS mount for the CI's testtmp.
Diffstat (limited to 'runtests.sh')
-rwxr-xr-xruntests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.sh b/runtests.sh
index 536543f8..d5a174cb 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -249,7 +249,7 @@ prep_scratch() {
[ -d "$scratchdir" ] && chmod -R u+rwX "$scratchdir" && rm -rf "$scratchdir"
mkdir "$scratchdir"
# Get rid of default ACLs and dir-setgid to avoid confusing some tests.
- $setfacl_nodef "$scratchdir" || true
+ $setfacl_nodef "$scratchdir" 2>/dev/null || true
chmod g-s "$scratchdir"
case "$srcdir" in
/*) ln -s "$srcdir" "$scratchdir/src" ;;