Changed "diff -u" back to "diff -c" (for portability).
authorWayne Davison <wayned@samba.org>
Sat, 5 Jul 2003 07:09:31 +0000 (07:09 +0000)
committerWayne Davison <wayned@samba.org>
Sat, 5 Jul 2003 07:09:31 +0000 (07:09 +0000)
testsuite/rsync.fns
testsuite/trimslash.test
testsuite/wildmatch.test

index 7cc7ad0..42b7b7e 100644 (file)
@@ -157,7 +157,7 @@ checkit() {
     echo ""
     for f in `cd "$2"; find . -type f -print `
     do 
-        diff -u "$2"/"$f" "$3"/"$f" || failed=YES
+        diff -c "$2"/"$f" "$3"/"$f" || failed=YES
     done
 
     echo "-------------"
@@ -165,7 +165,7 @@ checkit() {
     echo ""
     ( cd "$2" && rsync_ls_lR . ) > ${TMP}/ls-from 
     ( cd "$3" && rsync_ls_lR . ) > ${TMP}/ls-to 
-    diff -u ${TMP}/ls-from ${TMP}/ls-to || failed=YES
+    diff -c ${TMP}/ls-from ${TMP}/ls-to || failed=YES
     if [ -z "${failed}" ] ; then
        return 0
     else
index b2b8855..cf11840 100644 (file)
@@ -15,7 +15,7 @@ set -x
        "//a//" "////" \
         "/Users/Wierd Macintosh Name/// Ooh, translucent plastic/" \
        > "$scratchdir/slash.out"
-diff -u "$scratchdir/slash.out" - <<EOF
+diff -c "$scratchdir/slash.out" - <<EOF
 /usr/local/bin
 /usr/local/bin
 /usr/local/bin
index 5ef586b..3366dd5 100644 (file)
@@ -12,7 +12,7 @@
 set -x
 
 "$TOOLDIR/wildtest" >"$scratchdir/wild.out"
-diff -u "$scratchdir/wild.out" - <<EOF
+diff -c "$scratchdir/wild.out" - <<EOF
 EOF
 
 exit 0