Skip to content

Instantly share code, notes, and snippets.

@dgtized
Created September 5, 2008 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dgtized/8993 to your computer and use it in GitHub Desktop.
Save dgtized/8993 to your computer and use it in GitHub Desktop.
$ gdb vm/test/runner
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "i486-linux-gnu"...
(gdb) run
Starting program: /home/clgc/languages/rbx-cpp/vm/test/runner
[Thread debugging using libthread_db enabled]
Running 671 tests.......[New Thread 0xb7c5c6c0 (LWP 7809)]
........................................................................................................................
In TestEventLoop::test_timer:
./vm/test/test_event.hpp:50: Error: Assertion failed: chan.called
..
Program received signal SIGUSR1, User defined signal 1.
[Switching to Thread 0xb7c5c6c0 (LWP 7809)]
0xb7f3d410 in __kernel_vsyscall ()
(gdb) signal SIGUSR1
Continuing with signal SIGUSR1.
.
Program received signal SIGSEGV, Segmentation fault.
0xb7ccd4ac in free () from /lib/tls/i686/cmov/libc.so.6
(gdb) bt
#0 0xb7ccd4ac in free () from /lib/tls/i686/cmov/libc.so.6
#1 0x08094787 in ~ArgumentError (this=0x90ccc18) at vm/exception.hpp:79
#2 0xb7e95ea5 in ?? () from /usr/lib/libstdc++.so.6
#3 0xb7db1dcd in _Unwind_DeleteException () from /lib/libgcc_s.so.1
#4 0xb7e95130 in __cxa_end_catch () from /usr/lib/libstdc++.so.6
#5 0x081678c2 in TestException::test_argument_error_raise (this=0x8a4f6c4) at ./vm/test/test_exception.hpp:22
#6 0x08167961 in TestDescription_TestException_test_argument_error_raise::runTest (this=0x8a4f6d4) at vm/test/runner.cpp:913
#7 0x080d02b4 in CxxTest::RealTestDescription::run (this=0x8a4f6d4) at vm/test/cxxtest/cxxtest/RealDescriptions.cpp:96
#8 0x081bf3b3 in CxxTest::TestRunner::runTest (this=0xbfa29c07, td=@0x8a4f6d4) at vm/test/cxxtest/cxxtest/TestRunner.h:86
#9 0x081bf635 in CxxTest::TestRunner::runSuite (this=0xbfa29c07, sd=@0x8a4e000) at vm/test/cxxtest/cxxtest/TestRunner.h:71
#10 0x081bf7bf in CxxTest::TestRunner::runWorld (this=0xbfa29c07) at vm/test/cxxtest/cxxtest/TestRunner.h:50
#11 0x081bf885 in CxxTest::TestRunner::runAllTests (listener=@0xbfa29c50) at vm/test/cxxtest/cxxtest/TestRunner.h:23
#12 0x081bf90f in CxxTest::ErrorFormatter::run (this=0xbfa29c50) at vm/test/cxxtest/cxxtest/ErrorFormatter.h:49
#13 0x080d0477 in main () at vm/test/runner.cpp:17
(gdb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment