Support storing assertion messages into core dump
authorMartin Pitt <martin.pitt@ubuntu.com>
Tue, 22 Dec 2009 10:09:20 +0000 (11:09 +0100)
committerChris Coulson <chrisccoulson@googlemail.com>
Wed, 23 Dec 2009 15:51:11 +0000 (15:51 +0000)
commitda66897950431870390f8dc3f798e24f23ffb8c8
treeacdc2ae47e090f26c42b47ce75e0474cebccdc9b
parente9ab9eaff66b62c9653b90cca2eaf1d142f716a1
Support storing assertion messages into core dump

Crash interception/debugging systems like Apport or ABRT capture core dumps for
later crash analysis. However, if a program exits with an assertion failure,
the core dump is not useful since the assertion message is only printed to
stderr.

glibc recently got a patch which stores the message of assert() into the
__abort_msg global variable.
(http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=48dcd0ba)
That works fine for programs which actually use the standard C assert() macro.

This patch adds the same functionality for glib's assertion tests. If we are
building against a glibc which already has __abort_msg (2.11 and later, or
backported above git commit), use that, otherwise put it into our own field
__glib_assert_msg.

Usage:

  $ cat test.c
  #include <glib.h>

  int main() {
      g_assert(1 < 0);
      return 0;
  }

  $ ./test
  **ERROR:test.c:5:main: assertion failed: (1 < 0)
  Aborted (Core dumped)

  $ gdb --batch --ex 'print (char*) __abort_msg' ./test core
  [...]
  $1 = 0x93bf028 "ERROR:test.c:5:main: assertion failed: (1 < 0)"

https://bugzilla.gnome.org/show_bug.cgi?id=594872
configure.in
glib/gtestutils.c
tests/.gitignore
tests/Makefile.am
tests/assert-msg-test.c [new file with mode: 0644]
tests/run-assert-msg-test.sh [new file with mode: 0755]