Created
September 2, 2008 21:41
-
-
Save dgtized/8472 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ 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 669 tests.......[New Thread 0xb7ca36c0 (LWP 14901)] | |
| ..................................................................................................... | |
| In TestCompiledFile::test_load_file: | |
| ./vm/test/test_compiled_file.hpp:71: Error: Expected (task->execute()) to throw (Task::Halt) but it didn't throw | |
| ....... | |
| In TestContexts::test_recycle: | |
| ./vm/test/test_contexts.hpp:48: Error: Assertion failed: ctx->recycle(state) | |
| ............. | |
| Program received signal SIGUSR1, User defined signal 1. | |
| [Switching to Thread 0xb7ca36c0 (LWP 14901)] | |
| 0xb7f84410 in __kernel_vsyscall () | |
| (gdb) bt | |
| #0 0xb7f84410 in __kernel_vsyscall () | |
| #1 0xb7cd04b6 in kill () from /lib/tls/i686/cmov/libc.so.6 | |
| #2 0x0817cb35 in TestEventLoop::test_signal (this=0x8a4c7a4) at ./vm/test/test_event.hpp:116 | |
| #3 0x0817ccf9 in TestDescription_TestEventLoop_test_signal::runTest (this=0x8a4c808) at vm/test/runner.cpp:900 | |
| #4 0x080ce8d8 in CxxTest::RealTestDescription::run (this=0x8a4c808) at vm/test/cxxtest/cxxtest/RealDescriptions.cpp:96 | |
| #5 0x081bcc41 in CxxTest::TestRunner::runTest (this=0xbffe09c7, td=@0x8a4c808) at vm/test/cxxtest/cxxtest/TestRunner.h:86 | |
| #6 0x081bcec3 in CxxTest::TestRunner::runSuite (this=0xbffe09c7, sd=@0x8a4b120) at vm/test/cxxtest/cxxtest/TestRunner.h:71 | |
| #7 0x081bd04d in CxxTest::TestRunner::runWorld (this=0xbffe09c7) at vm/test/cxxtest/cxxtest/TestRunner.h:50 | |
| #8 0x081bd113 in CxxTest::TestRunner::runAllTests (listener=@0xbffe0a10) at vm/test/cxxtest/cxxtest/TestRunner.h:23 | |
| #9 0x081bd19d in CxxTest::ErrorFormatter::run (this=0xbffe0a10) at vm/test/cxxtest/cxxtest/ErrorFormatter.h:49 | |
| #10 0x080cea9b in main () at vm/test/runner.cpp:17 | |
| (gdb) signal SIGUSR1 | |
| Continuing with signal SIGUSR1. | |
| ............................................................................................................................................................................................................................................................................................. | |
| In TestNativeFunction::test_find_symbol_in_library: | |
| ./vm/test/test_nativefunction.hpp:68: Error: Assertion failed: ep | |
| ... | |
| In TestNativeFunction::test_bind_with_char: | |
| ./vm/test/test_nativefunction.hpp:136: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_unsigned_char: | |
| ./vm/test/test_nativefunction.hpp:160: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_short: | |
| ./vm/test/test_nativefunction.hpp:184: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_unsigned_short: | |
| ./vm/test/test_nativefunction.hpp:209: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_int: | |
| ./vm/test/test_nativefunction.hpp:242: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_unsigned_int: | |
| ./vm/test/test_nativefunction.hpp:276: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_long: | |
| ./vm/test/test_nativefunction.hpp:310: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_unsigned_long: | |
| ./vm/test/test_nativefunction.hpp:344: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_long_long: | |
| ./vm/test/test_nativefunction.hpp:378: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_unsigned_long_long: | |
| ./vm/test/test_nativefunction.hpp:412: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_void: | |
| ./vm/test/test_nativefunction.hpp:445: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_ptr: | |
| ./vm/test/test_nativefunction.hpp:465: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_float: | |
| ./vm/test/test_nativefunction.hpp:502: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_double: | |
| ./vm/test/test_nativefunction.hpp:527: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_string_returned: | |
| ./vm/test/test_nativefunction.hpp:551: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_string_and_ptr: | |
| ./vm/test/test_nativefunction.hpp:584: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_object: | |
| ./vm/test/test_nativefunction.hpp:629: Error: Assertion failed: !func->nil_p() | |
| In TestNativeFunction::test_bind_with_state: | |
| ./vm/test/test_nativefunction.hpp:665: Error: Assertion failed: !func->nil_p() | |
| ........................................................................................................................................................................................................................................ | |
| Failed 21 of 669 tests | |
| Success rate: 96% | |
| Program exited with code 025. | |
| (gdb) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment