From: Wayne Davison Date: Mon, 21 May 2007 01:05:36 +0000 (+0000) Subject: Create a symlink back to the source dir in the scratchdir of a test. X-Git-Tag: v3.0.0pre1~255 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c395acd8046a0dc8be3df095ce7c1e9fbf48864b;p=thirdparty%2Frsync.git Create a symlink back to the source dir in the scratchdir of a test. --- diff --git a/runtests.sh b/runtests.sh index 62675770..286f0c5d 100755 --- a/runtests.sh +++ b/runtests.sh @@ -226,6 +226,7 @@ prep_scratch() { # Get rid of default ACLs and dir-setgid to avoid confusing some tests. $setfacl_nodef "$scratchdir" || true chmod g-s "$scratchdir" + ln -s "$srcdir" "$scratchdir/src" return 0 }