Subject: | immediate segfault |
The attached testcase segfault immediatly. Here is stack trace:
(gdb) bt
#0 0xb7bb66e5 in svn_path_join () from /usr/lib/libsvn_subr-1.so.0
#1 0xb7c134c9 in svn_repos_post_revprop_change_hook ()
from /usr/lib/libsvn_repos-1.so.0
#2 0xb7c13960 in svn_repos_create () from /usr/lib/libsvn_repos-1.so.0
#3 0xb757d33a in _wrap_svn_repos_create ()
from
/usr/lib/perl5/vendor_perl/5.8.8/i386-linux/auto/SVN/_Repos/_Repos.so
#4 0xb7f1373d in Perl_pp_entersub ()
from /usr/lib/perl5/5.8.8/i386-linux/CORE/libperl.so
#5 0xb7f0cae5 in Perl_runops_standard ()
from /usr/lib/perl5/5.8.8/i386-linux/CORE/libperl.so
#6 0xb7eb9503 in perl_run ()
from /usr/lib/perl5/5.8.8/i386-linux/CORE/libperl.so
#7 0x080490d1 in main ()
This is happening on Mandriva Linux cooker, with perl 5.8.8, and svn
1.32. SVN bindings have been produced with swig 1.3.27 (more recent
versions break svn bindings regression tests).
There is ticket opened in Mandriva bugzilla:
http://qa.mandriva.com/show_bug.cgi?id=24429
Subject: | testcase.pl |
#!/usr/bin/perl
use SVN::Mirror;
my $m = SVN::Mirror->new(
source => 'svn+ssh://svn.mandriva.com/svn/soft/drakx/trunk/perl-install',
repos => '/home/guillaume/svn',
target_path => '/mirror/drakx',
repos_create => 1,
skip_to => 100
);