On Wed, Dec 04, 2013 at 03:38:33AM +0000, Pádraig Brady wrote: > Ah so mallopt(M_CHECK_ACTION, 2) is documented to abort() on error. > I suppose we need to suppress core dumps now with the gnulib > ]GL_NOCRASH[ ... nocrash_init() guard? > Actually no, that doesn't catch SIGABRT. > So I suppose you need an explicitly exit(1) in a SIGABRT > signal handler in this test?
_exit(1). exit is not AS-safe. Rich