Unbreak recursive ls test
authorMartin Pool <mbp@samba.org>
Tue, 27 Nov 2001 07:19:37 +0000 (07:19 +0000)
committerMartin Pool <mbp@samba.org>
Tue, 27 Nov 2001 07:19:37 +0000 (07:19 +0000)
testsuite/rsync.fns

index fdc22264273a9a96476dab007e716c176706a7f0..48851ba3333d804c5a01c1d0a1fdd1a5b0d159b7 100644 (file)
@@ -144,8 +144,8 @@ checkit() {
     echo "-------------">>${log}
     echo "check how the directory listings compare with diff:">>${log}
     echo "">>${log}
-    ( rsync_ls_lR "$2" ) > ${TMP}/ls-from 2>>${log}
-    ( rsync_ls_lR "$3" ) > ${TMP}/ls-to  2>>${log}
+    ( cd "$2" && rsync_ls_lR ) > ${TMP}/ls-from 2>>${log}
+    ( cd "$3" && rsync_ls_lR ) > ${TMP}/ls-to  2>>${log}
     diff -c ${TMP}/ls-from ${TMP}/ls-to >>${log} 2>&1 || failed=YES
     if [ -z "${failed}" ] ; then
        rm $log