DO NOT REPLY [Bug 5732] New: xattrs.test calls wrong rsync

samba-bugs at samba.org samba-bugs at samba.org
Wed Sep 3 14:35:18 GMT 2008


https://bugzilla.samba.org/show_bug.cgi?id=5732

           Summary: xattrs.test calls wrong rsync
           Product: rsync
           Version: 3.0.4
          Platform: All
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P3
         Component: core
        AssignedTo: wayned at samba.org
        ReportedBy: petr.uzel at suse.cz
         QAContact: rsync-qa at samba.org


In rsync 3.0.4pre2, the xattrs.test at some places does not call rsync as
$RSYNC, but simply as rsync, which causes that :
1) the test fails on systems where rsync is not installed
2) it tests wrong binary (/usr/bin/rsync)

Following patch fixes the problem:

>From 844bdb5d32afe8ea7e59d0ea0c5dc9ce688c69d7 Mon Sep 17 00:00:00 2001
From: Petr Uzel <petr.uzel at suse.cz>
Date: Wed, 3 Sep 2008 16:12:31 +0200
Subject: [PATCH] Fix xattrs.test - use $RSYNC instead of plain rsync

---
 testsuite/xattrs.test |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/testsuite/xattrs.test b/testsuite/xattrs.test
index 86758fa..8b40eec 100644
--- a/testsuite/xattrs.test
+++ b/testsuite/xattrs.test
@@ -116,10 +116,10 @@ fi
 cd "$fromdir"
 rm -rf "$todir" "$chkdir"

-rsync -aX file1 file2
-rsync -aX file1 file2 ../chk/
-rsync -aX --del ../chk/ .
-rsync -aX file1 ../lnk/
+$RSYNC -aX file1 file2
+$RSYNC -aX file1 file2 ../chk/
+$RSYNC -aX --del ../chk/ .
+$RSYNC -aX file1 ../lnk/

 xls file1 file2 >"$scratchdir/xattrs.txt"

@@ -132,7 +132,7 @@ cd "$fromdir"
 rm "$todir/file2"

 echo extra >file1
-rsync -aX . ../chk/
+$RSYNC -aX . ../chk/

 checkit "$RSYNC -aiiX . ../to" "$chkdir" "$todir"

--
1.5.4.5


-- 
Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.


More information about the rsync mailing list