Return-Path: X-Original-To: apmail-subversion-users-archive@minotaur.apache.org Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 588D3E610 for ; Tue, 5 Feb 2013 18:15:18 +0000 (UTC) Received: (qmail 1646 invoked by uid 500); 5 Feb 2013 18:15:17 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 1624 invoked by uid 500); 5 Feb 2013 18:15:17 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 1617 invoked by uid 99); 5 Feb 2013 18:15:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Feb 2013 18:15:17 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [192.109.42.8] (HELO einhorn.in-berlin.de) (192.109.42.8) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Feb 2013 18:15:07 +0000 X-Envelope-From: stsp@stsp.name Received: from byrne.stsp.name (byrne.stsp.name [217.197.84.41]) by einhorn.in-berlin.de (8.13.6/8.13.6/Debian-1) with ESMTP id r15IEZ2k007440 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 5 Feb 2013 19:14:39 +0100 Received: from byrne.stsp.name (stsp@localhost [127.0.0.1]) by byrne.stsp.name (8.14.6/8.14.5) with ESMTP id r15IEQW9022794; Tue, 5 Feb 2013 19:14:27 +0100 (CET) Received: (from stsp@localhost) by byrne.stsp.name (8.14.6/8.14.5/Submit) id r15IEMAp010821; Tue, 5 Feb 2013 19:14:22 +0100 (CET) Date: Tue, 5 Feb 2013 19:14:21 +0100 From: Stefan Sperling To: Alexey Neyman Cc: users@subversion.apache.org, Johan Corveleyn , Alfred Perlstein Subject: Re: FreeBSD project and subversion. Message-ID: <20130205181421.GD32341@byrne.stsp.name> Mail-Followup-To: Alexey Neyman , users@subversion.apache.org, Johan Corveleyn , Alfred Perlstein References: <510A8FAA.2020903@mu.org> <20130205160840.GA32341@byrne.stsp.name> <3629059.HZCLfd0A0T@etoile> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3629059.HZCLfd0A0T@etoile> User-Agent: Mutt/1.5.21 (2010-09-15) X-Scanned-By: MIMEDefang_at_IN-Berlin_e.V. on 192.109.42.8 X-Virus-Checked: Checked by ClamAV on apache.org On Tue, Feb 05, 2013 at 09:19:19AM -0800, Alexey Neyman wrote: > There is one more weird issue with svn diff, see the script below. The issue > is that "--old=A --new=B" is not opposite of "--old=B --new=A". I don't know > if it is a bug or another ambuguity I am not aware of :) > > Here is the script: > [[[ > #!/bin/bash > > REPO=/tmp/foo > WC=/tmp/foo.wc > > rm -rf $REPO $WC > svnadmin create $REPO > svn co -q file://$REPO $WC > cd $WC > > echo r1 > a > svn add -q a > svn ci -q -m R1 > echo r2 > a > svn ci -q -m R2 > svn up -q -r 1 > echo new > a > echo "Issue: --old=A --new=B is not opposite of --old=B --new=A" > echo " Running: svn di --old=^/ --new=." > svn di --old=^/ --new=. > echo " Running: svn di --old=. --new=^/" > svn di --old=. --new=^/ > ]]] > > And here is the output (svn 1.7.6): > [[[ > Issue: --old=A --new=B is not opposite of --old=B --new=A > Running: svn di --old=^/ --new=. > Index: a > =================================================================== > --- a (.../file:///tmp/foo) (revision 2) > +++ a (working copy) > @@ -1 +1 @@ > -r2 > +new > Running: svn di --old=. --new=^/ > Index: a > =================================================================== > --- a (working copy) > +++ a (.../file:///tmp/foo) (revision 2) > @@ -1 +1 @@ > -r1 > +r2 > ]]] > > Regards, > Alexey. I can reproduce this with a trunk build. Can you please file an issue for this? I'm not going to get to this right away. Thanks!