[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Another segfault in the wc prop merge code...

From: Philip Martin <philip_at_codematters.co.uk>
Date: 2005-08-21 23:18:41 CEST

John Szakmeister <john@szakmeister.net> writes:

> Reproduction recipe:
>
> svn up -r15856
> svn merge \
> http://svn.collab.net/repos/svn/branches/python-bindings-improvements \
> -r15854:15856 .
>
> The merge will generate the segfault.

A merge that adds a directory with properties is the problem:

#!/bin/bash

SVN=svn
REPO=file://`pwd`/repo
#REPO=svn://localhost/repo
#REPO=http://localhost:8888/obj/repo
rm -rf repo wc
#svnadmin create --fs-type bdb --bdb-txn-nosync repo
svnadmin create repo
echo [general] >> repo/conf/svnserve.conf
echo anon-access = write >> repo/conf/svnserve.conf
#echo auth-access = write >> repo/conf/svnserve.conf
echo password-db = passwd >> repo/conf/svnserve.conf
echo [users] >> repo/conf/passwd
echo pm = mp >> repo/conf/passwd
echo xx = xx >> repo/conf/passwd

$SVN mkdir $REPO/foo $REPO/bar
$SVN co $REPO wc
$SVN mkdir wc/foo/zig
$SVN ps x x wc/foo/zig
$SVN ci wc
$SVN merge -r1:HEAD $REPO/foo wc/bar

-- 
Philip Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sun Aug 21 23:19:33 2005

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.