"Garrett Rooney" <rooneg@electricjellyfish.net> writes:
> I'm now able to run basic_tests.py over svnserve with a bdb 4.4 repos
> with apr built with pool debugging and under valgrind with no errors,
> so I think we're on the right track ;-)
Unfortunately it doesn't work with --enable-dso which is how some
(most?) distributions build Subversion. I think the problem is that
the callbacks happen after the DSO has been unloaded and so the
callback code is no longer part of the executable. Using trunk:
$ valgrind -q svnadmin create --fs-type bdb repo
==16619== Jump to the invalid address stated on the next line
==16619== at 0x44CF79D: ???
==16619== by 0x41DC43B: pool_clear_debug (apr_pools.c:1372)
==16619== by 0x41DC624: pool_destroy_debug (apr_pools.c:1457)
==16619== by 0x41DC423: pool_clear_debug (apr_pools.c:1369)
==16619== by 0x41DC624: pool_destroy_debug (apr_pools.c:1457)
==16619== by 0x41DC6EC: apr_pool_destroy_debug (apr_pools.c:1499)
==16619== by 0x41DC241: apr_pool_terminate (apr_pools.c:1269)
==16619== by 0x41DD6B7: apr_terminate (start.c:82)
==16619== by 0x42ACAE1: exit (exit.c:54)
==16619== by 0x4296E3D: (below main) (libc-start.c:245)
==16619== Address 0x44CF79D is not stack'd, malloc'd or (recently) free'd
==16619==
==16619== Process terminating with default action of signal 11 (SIGSEGV)
==16619== Access not within mapped region at address 0x44CF79D
==16619== at 0x44CF79D: ???
==16619== by 0x41DC43B: pool_clear_debug (apr_pools.c:1372)
==16619== by 0x41DC624: pool_destroy_debug (apr_pools.c:1457)
==16619== by 0x41DC423: pool_clear_debug (apr_pools.c:1369)
==16619== by 0x41DC624: pool_destroy_debug (apr_pools.c:1457)
==16619== by 0x41DC6EC: apr_pool_destroy_debug (apr_pools.c:1499)
==16619== by 0x41DC241: apr_pool_terminate (apr_pools.c:1269)
==16619== by 0x41DD6B7: apr_terminate (start.c:82)
==16619== by 0x42ACAE1: exit (exit.c:54)
==16619== by 0x4296E3D: (below main) (libc-start.c:245)
Segmentation fault
$ valgrind -q svn ls file://`pwd`/repo
==16621== Jump to the invalid address stated on the next line
==16621== at 0x47BC79D: ???
==16621== by 0x422943B: pool_clear_debug (apr_pools.c:1372)
==16621== by 0x4229624: pool_destroy_debug (apr_pools.c:1457)
==16621== by 0x4229423: pool_clear_debug (apr_pools.c:1369)
==16621== by 0x4229624: pool_destroy_debug (apr_pools.c:1457)
==16621== by 0x42296EC: apr_pool_destroy_debug (apr_pools.c:1499)
==16621== by 0x4229241: apr_pool_terminate (apr_pools.c:1269)
==16621== by 0x422A6B7: apr_terminate (start.c:82)
==16621== by 0x4314AE1: exit (exit.c:54)
==16621== by 0x42FEE3D: (below main) (libc-start.c:245)
==16621== Address 0x47BC79D is not stack'd, malloc'd or (recently) free'd
==16621==
==16621== Process terminating with default action of signal 11 (SIGSEGV)
==16621== Access not within mapped region at address 0x47BC79D
==16621== at 0x47BC79D: ???
==16621== by 0x422943B: pool_clear_debug (apr_pools.c:1372)
==16621== by 0x4229624: pool_destroy_debug (apr_pools.c:1457)
==16621== by 0x4229423: pool_clear_debug (apr_pools.c:1369)
==16621== by 0x4229624: pool_destroy_debug (apr_pools.c:1457)
==16621== by 0x42296EC: apr_pool_destroy_debug (apr_pools.c:1499)
==16621== by 0x4229241: apr_pool_terminate (apr_pools.c:1269)
==16621== by 0x422A6B7: apr_terminate (start.c:82)
==16621== by 0x4314AE1: exit (exit.c:54)
==16621== by 0x42FEE3D: (below main) (libc-start.c:245)
Segmentation fault
--
Philip Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Jul 31 14:35:47 2006