summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorWayne Davison <wayne@opencoder.net>2020-06-11 14:33:25 -0700
committerWayne Davison <wayne@opencoder.net>2020-06-11 14:33:25 -0700
commit3c793ef15373ad37f3c47d296cc770df70be2abc (patch)
tree5b09b1fb6f109dd06fb66c5eeeb89a11db842286 /testsuite
parentcff0764b7ff4247c2523d4c054e1c1786d2dec08 (diff)
downloadrsync-3c793ef15373ad37f3c47d296cc770df70be2abc.tar.gz
Use /dev/shm instead of requiring /dev/shm/tmp.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/chmod-temp-dir.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/chmod-temp-dir.test b/testsuite/chmod-temp-dir.test
index 085ab008..b9a294ac 100644
--- a/testsuite/chmod-temp-dir.test
+++ b/testsuite/chmod-temp-dir.test
@@ -16,7 +16,7 @@ hands_setup
sdev=`$TOOLDIR/getfsdev $scratchdir`
tdev=$sdev
-for tmpdir2 in "${RSYNC_TEST_TMP:-/override-tmp-not-specified}" /run/shm/tmp /var/tmp /tmp; do
+for tmpdir2 in "${RSYNC_TEST_TMP:-/override-tmp-not-specified}" /run/shm /var/tmp /tmp; do
[ -d "$tmpdir2" -a -w "$tmpdir2" ] || continue
tdev=`$TOOLDIR/getfsdev "$tmpdir2"`
[ x$sdev != x$tdev ] && break