search for: rtgvvv

Displaying 5 results from an estimated 5 matches for "rtgvvv".

2002 Oct 08
1
Some tests fail if rsync is not on path (with patch)
...The fix is to replace rsync with $RSYNC in the two tests. With those changes, all tests pass. Context diffs follow: *** testsuite/chgrp.test.orig Tue Oct 8 11:16:33 2002 --- testsuite/chgrp.test Tue Oct 8 11:16:48 2002 *************** *** 31,37 **** done sleep 2 ! checkit "rsync -rtgvvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" exit 0 # last [] may have failed but if we get here then we've won --- 31,37 ---- done sleep 2 ! checkit "$RSYNC -rtgvvv \"$fromdir/\" \"$todir/\"" "$from...
2002 Mar 28
1
rsync-2.5.5rc1: two problems on Apple Darwin (== MacOS X)
...d/rsync-2.5.5rc1/testtmp.chgrp/from/foo-887 + date + chgrp 887 /local/build/rsync-2.5.5rc1/testtmp.chgrp/from/foo-887 + name=/local/build/rsync-2.5.5rc1/testtmp.chgrp/from/foo-75 + date + chgrp 75 /local/build/rsync-2.5.5rc1/testtmp.chgrp/from/foo-75 + sleep 2 + failed= + echo Running: "rsync -rtgvvv "/local/build/rsync-2.5.5rc1/testtmp.chgrp/from/" "/local/build/rsync-2.5.5rc1/testtmp.chgrp/to/"" Running: "rsync -rtgvvv "/local/build/rsync-2.5.5rc1/testtmp.chgrp/from/" "/local/build/rsync-2.5.5rc1/testtmp.chgrp/to/"" + eval rsync -rtgvvv &...
2002 Aug 29
0
PATCH: Fix IRIX 6 testsuite failures
Having built rsync 2.5.5 on IRIX 6.2 with gcc 3.1, I ran into two failures when running the testsuite with make check: both the chgrp and hardlinks tests fail: The failure in the chgrp test occurs here: + rsync -rtgvvv /amnt/callisto/volumes/obj-irix5/local/obj.irix5/rsync-2.5.5/testtmp.chgrp/from/ /amnt/callisto/volumes/obj-irix5/local/obj.irix5/rsync-2.5.5/testtmp.chgrp/to/ rsync: opendir /amnt/callisto/volumes/obj-irix5/local/obj.irix5/rsync-2.5.5/testtmp.chgrp/from//tgvvv failed: No such file or directory. r...
2002 Jun 15
0
[PATCH] make test patch.
...------ diff -urNp rsync-2.5.5.orig/testsuite/chgrp.test rsync-2.5.5/testsuite/chgrp.test --- rsync-2.5.5.orig/testsuite/chgrp.test 2002-03-25 04:01:37.000000000 +0100 +++ rsync-2.5.5/testsuite/chgrp.test 2002-06-16 06:19:50.000000000 +0200 @@ -31,7 +31,7 @@ do done sleep 2 -checkit "rsync -rtgvvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" +checkit "$RSYNC -rtgvvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" exit 0 # last [] may have failed but if we get here then we've won diff -urNp...
2004 Apr 10
0
patches for copying atimes
...sync copying atimes + +. $srcdir/testsuite/rsync.fns + +set -x + +fromdir="$scratchdir/from" +todir="$scratchdir/to" + +mkdir "$fromdir" + +touch "$fromdir/foo" +touch -a -t 200102031717.42 "$fromdir/foo" + +TLS_ARGS=--atime + +checkit "$RSYNC -rtgvvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" + +# The script would have aborted on error, so getting here means we've won. +exit 0 Index: testsuite/rsync.fns =================================================================== RCS file: /cvsroot/rsy...