Re: SVN_ERR_ASSERT calls abort() in non-maintainer-mode

2011-05-19 Thread Arwin Arni
On Thursday 19 May 2011 08:19 PM, Hyrum K Wright wrote: On Thu, May 19, 2011 at 3:48 PM, Arwin Arni wrote: In our implementation of SVN_ERR_ASSERT, we do: #define SVN_ERR_ASSERT(expr)\ do {

RE: SVN_ERR_ASSERT calls abort() in non-maintainer-mode

2011-05-19 Thread Bert Huijben
> -Original Message- > From: Arwin Arni [mailto:ar...@collab.net] > Sent: donderdag 19 mei 2011 15:48 > To: Subversion Development > Subject: SVN_ERR_ASSERT calls abort() in non-maintainer-mode > > In our implementation of SVN_ERR_ASSERT, we do: > > #define SVN_ERR_ASSERT(expr)

Re: SVN_ERR_ASSERT calls abort() in non-maintainer-mode

2011-05-19 Thread Hyrum K Wright
On Thu, May 19, 2011 at 3:48 PM, Arwin Arni wrote: > In our implementation of SVN_ERR_ASSERT, we do: > > #define SVN_ERR_ASSERT(expr)                                            \ >  do {                                                                  \ >    if (!(expr))