-
-
Save eregon/811c8db1b91fac627b444ddc4c0f2760 to your computer and use it in GitHub Desktop.
This file contains 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
diff --git a/thread.c b/thread.c | |
index 8fb5373..3b13a73 100644 | |
--- a/thread.c | |
+++ b/thread.c | |
@@ -611,6 +611,7 @@ thread_start_func_2(rb_thread_t *th, VALUE *stack_start, VALUE *register_stack_s | |
} | |
else if (th->report_on_exception) { | |
void rb_threadptr_error_print(rb_thread_t *th, VALUE errinfo); | |
+ fprintf(stderr, "\nThread terminated with\n"); | |
rb_threadptr_error_print(th, errinfo); | |
errinfo = Qnil; | |
} | |
@@ -705,7 +706,7 @@ thread_create_core(VALUE thval, VALUE args, VALUE (*fn)(ANYARGS)) | |
native_mutex_initialize(&th->interrupt_lock); | |
native_cond_initialize(&th->interrupt_cond, RB_CONDATTR_CLOCK_MONOTONIC); | |
- th->report_on_exception = th->vm->thread_report_on_exception; | |
+ th->report_on_exception = 1; // th->vm->thread_report_on_exception; | |
/* kick thread */ | |
err = native_thread_create(th); |
This file contains 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
$ make test-all | |
# Running tests: | |
[ 516/16624] DRbTests::TestBug4409#test_bug4409 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 517/16624] DRbTests::TestDRbAry#test_01 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 518/16624] DRbTests::TestDRbAry#test_02_collect | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 519/16624] DRbTests::TestDRbAry#test_03_redo | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 520/16624] DRbTests::TestDRbAry#test_05_break | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 521/16624] DRbTests::TestDRbAry#test_06_next | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 522/16624] DRbTests::TestDRbAry#test_07_break_18 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 523/16624] DRbTests::TestDRbCore#test_00_DRbObject | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 524/16624] DRbTests::TestDRbCore#test_01 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 525/16624] DRbTests::TestDRbCore#test_01_02_loop | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 526/16624] DRbTests::TestDRbCore#test_02_unknown | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 527/16624] DRbTests::TestDRbCore#test_03 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 528/16624] DRbTests::TestDRbCore#test_04 | |
Thread terminated with | |
can't alloc thread (ThreadError) | |
[ 529/16624] DRbTests::TestDRbCore#test_05_eq | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 530/16624] DRbTests::TestDRbCore#test_06_timeout | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 531/16624] DRbTests::TestDRbCore#test_07_private_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 532/16624] DRbTests::TestDRbCore#test_07_protected_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 533/16624] DRbTests::TestDRbCore#test_07_public_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 534/16624] DRbTests::TestDRbCore#test_07_send_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 535/16624] DRbTests::TestDRbCore#test_08_here | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 536/16624] DRbTests::TestDRbCore#test_09_option | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 537/16624] DRbTests::TestDRbCore#test_10_yield | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 538/16624] DRbTests::TestDRbCore#test_10_yield_undumped | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 539/16624] DRbTests::TestDRbCore#test_11_remote_no_method_error | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 540/16624] DRbTests::TestDRbLarge#test_01_large_ary | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 541/16624] DRbTests::TestDRbLarge#test_02_large_ary | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 542/16624] DRbTests::TestDRbLarge#test_03_large_ary | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 543/16624] DRbTests::TestDRbLarge#test_04_many_arg | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 544/16624] DRbTests::TestDRbLarge#test_05_too_large_ary | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 545/16624] DRbTests::TestDRbLarge#test_06_array_operations | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 546/16624] DRbTests::TestDRbLarge#test_07_one_element_array | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 547/16624] DRbTests::TestDRbLarge#test_08_empty_array | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 548/16624] DRbTests::TestDRbMServer#test_01 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 561/16624] DRbTests::TestDRbSSLAry#test_01 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 562/16624] DRbTests::TestDRbSSLAry#test_02_collect | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 563/16624] DRbTests::TestDRbSSLAry#test_03_redo | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 564/16624] DRbTests::TestDRbSSLAry#test_05_break | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 565/16624] DRbTests::TestDRbSSLAry#test_06_next | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 566/16624] DRbTests::TestDRbSSLAry#test_07_break_18 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 567/16624] DRbTests::TestDRbSSLCore#test_00_DRbObject | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 568/16624] DRbTests::TestDRbSSLCore#test_01 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 569/16624] DRbTests::TestDRbSSLCore#test_01_02_loop | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 570/16624] DRbTests::TestDRbSSLCore#test_02_unknown | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 571/16624] DRbTests::TestDRbSSLCore#test_03 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 572/16624] DRbTests::TestDRbSSLCore#test_04 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 573/16624] DRbTests::TestDRbSSLCore#test_05_eq | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 574/16624] DRbTests::TestDRbSSLCore#test_06_timeout | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 575/16624] DRbTests::TestDRbSSLCore#test_07_private_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 576/16624] DRbTests::TestDRbSSLCore#test_07_protected_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 577/16624] DRbTests::TestDRbSSLCore#test_07_public_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 578/16624] DRbTests::TestDRbSSLCore#test_07_send_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 579/16624] DRbTests::TestDRbSSLCore#test_08_here | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 580/16624] DRbTests::TestDRbSSLCore#test_09_option | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 581/16624] DRbTests::TestDRbSSLCore#test_10_yield | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 582/16624] DRbTests::TestDRbSSLCore#test_10_yield_undumped | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 583/16624] DRbTests::TestDRbSSLCore#test_11_remote_no_method_error | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 584/16624] DRbTests::TestDRbSafe1#test_01 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 585/16624] DRbTests::TestDRbSafe1#test_02_collect | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 586/16624] DRbTests::TestDRbSafe1#test_03_redo | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 587/16624] DRbTests::TestDRbSafe1#test_05_break | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 588/16624] DRbTests::TestDRbSafe1#test_06_next | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 589/16624] DRbTests::TestDRbSafe1#test_07_break_18 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 590/16624] DRbTests::TestDRbUNIXAry#test_01 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': ThreadError | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 591/16624] DRbTests::TestDRbUNIXAry#test_02_collect | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 592/16624] DRbTests::TestDRbUNIXAry#test_03_redo | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 593/16624] DRbTests::TestDRbUNIXAry#test_05_break | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 594/16624] DRbTests::TestDRbUNIXAry#test_06_next | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 595/16624] DRbTests::TestDRbUNIXAry#test_07_break_18 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 596/16624] DRbTests::TestDRbUNIXCore#test_00_DRbObject | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 597/16624] DRbTests::TestDRbUNIXCore#test_01 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 598/16624] DRbTests::TestDRbUNIXCore#test_01_02_loop | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 599/16624] DRbTests::TestDRbUNIXCore#test_02_unknown | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 600/16624] DRbTests::TestDRbUNIXCore#test_03 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 601/16624] DRbTests::TestDRbUNIXCore#test_04 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 602/16624] DRbTests::TestDRbUNIXCore#test_05_eq | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 603/16624] DRbTests::TestDRbUNIXCore#test_06_timeout | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 604/16624] DRbTests::TestDRbUNIXCore#test_07_private_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 605/16624] DRbTests::TestDRbUNIXCore#test_07_protected_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 606/16624] DRbTests::TestDRbUNIXCore#test_07_public_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 607/16624] DRbTests::TestDRbUNIXCore#test_07_send_missing | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 608/16624] DRbTests::TestDRbUNIXCore#test_08_here | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 609/16624] DRbTests::TestDRbUNIXCore#test_09_option | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 610/16624] DRbTests::TestDRbUNIXCore#test_10_yield | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 611/16624] DRbTests::TestDRbUNIXCore#test_10_yield_undumped | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 612/16624] DRbTests::TestDRbUNIXCore#test_11_remote_no_method_error | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 613/16624] DRbTests::TestDRbYield#test_01_one | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 614/16624] DRbTests::TestDRbYield#test_02_two | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 615/16624] DRbTests::TestDRbYield#test_03_many | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 616/16624] DRbTests::TestDRbYield#test_04_many_to_one | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 617/16624] DRbTests::TestDRbYield#test_05_array_subclass | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 618/16624] DRbTests::TestDRbYield#test_06_taint | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:1676:in `new': can't alloc thread (ThreadError) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1676:in `ensure in block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1678:in `block (2 levels) in main_loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `loop' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1664:in `block in main_loop' | |
[ 746/16624] Fiddle::TestFunc#test_syscall_with_tainted_string | |
Thread terminated with | |
/home/eregon/code/ruby/test/fiddle/test_func.rb:19:in `call': tainted parameter not allowed (SecurityError) | |
from /home/eregon/code/ruby/test/fiddle/test_func.rb:19:in `block (2 levels) in test_syscall_with_tainted_string' | |
[ 778/16624] Fiddle::TestHandle#test_safe_handle_open | |
Thread terminated with | |
/home/eregon/code/ruby/test/fiddle/test_handle.rb:16:in `initialize': Insecure operation - initialize (SecurityError) | |
from /home/eregon/code/ruby/test/fiddle/test_handle.rb:16:in `new' | |
from /home/eregon/code/ruby/test/fiddle/test_handle.rb:16:in `block in test_safe_handle_open' | |
[ 780/16624] Fiddle::TestHandle#test_safe_function_lookup | |
Thread terminated with | |
/home/eregon/code/ruby/test/fiddle/test_handle.rb:25:in `[]': Insecure operation - [] (SecurityError) | |
from /home/eregon/code/ruby/test/fiddle/test_handle.rb:25:in `block in test_safe_function_lookup' | |
[ 919/16624] IMAPTest#test_imaps_unknown_ca | |
Thread terminated with | |
/home/eregon/code/ruby/.ext/common/openssl/ssl.rb:401:in `accept': SSL_accept returned=1 errno=0 state=SSLv3 read client certificate A: tlsv1 alert unknown ca (OpenSSL::SSL::SSLError) | |
from /home/eregon/code/ruby/.ext/common/openssl/ssl.rb:401:in `accept' | |
from /home/eregon/code/ruby/test/net/imap/test_imap.rb:545:in `block in imaps_test' | |
[ 1052/16624] OpenSSL::TestEC#test_ec_point_mul = 0.01 s | |
1) Error: | |
OpenSSL::TestEC#test_ec_point_mul: | |
OpenSSL::PKey::EC::Group::Error: EC_GROUP_new_by_GF*: unsupported field | |
/home/eregon/code/ruby/test/openssl/test_pkey_ec.rb:190:in `initialize' | |
/home/eregon/code/ruby/test/openssl/test_pkey_ec.rb:190:in `new' | |
/home/eregon/code/ruby/test/openssl/test_pkey_ec.rb:190:in `test_ec_point_mul' | |
[ 1101/16624] OpenSSL::TestPKCS12#test_create_with_chain_decode = 0.01 s | |
2) Failure: | |
OpenSSL::TestPKCS12#test_create_with_chain_decode [/home/eregon/code/ruby/test/openssl/utils.rb:187]: | |
<[]> expected but was | |
<["error:0B080074:x509 certificate routines:X509_check_private_key:key values mismatch", | |
"error:0B080074:x509 certificate routines:X509_check_private_key:key values mismatch"]>. | |
[ 2721/16624] Rinda::TupleSpaceProxyTest#test_cancel_01 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/rinda/tuplespace.rb:502:in `block in move': Rinda::RequestCanceledError (Rinda::RequestCanceledError) | |
from /home/eregon/code/ruby/lib/monitor.rb:214:in `mon_synchronize' | |
from /home/eregon/code/ruby/lib/rinda/tuplespace.rb:488:in `move' | |
from /home/eregon/code/ruby/lib/rinda/rinda.rb:274:in `block in take' | |
from /home/eregon/code/ruby/lib/rinda/rinda.rb:223:in `deliver' | |
from /home/eregon/code/ruby/lib/rinda/rinda.rb:273:in `take' | |
from /home/eregon/code/ruby/test/rinda/test_rinda.rb:351:in `block in test_cancel_01' | |
[ 2722/16624] Rinda::TupleSpaceProxyTest#test_cancel_02 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/rinda/tuplespace.rb:534:in `block in read': Rinda::RequestCanceledError (Rinda::RequestCanceledError) | |
from /home/eregon/code/ruby/lib/monitor.rb:214:in `mon_synchronize' | |
from /home/eregon/code/ruby/lib/rinda/tuplespace.rb:525:in `read' | |
from /home/eregon/code/ruby/lib/rinda/rinda.rb:282:in `read' | |
from /home/eregon/code/ruby/test/rinda/test_rinda.rb:380:in `block in test_cancel_02' | |
[ 2728/16624] Rinda::TupleSpaceProxyTest#test_ruby_talk_264062 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/rinda/tuplespace.rb:503:in `block in move': Rinda::RequestExpiredError (Rinda::RequestExpiredError) | |
from /home/eregon/code/ruby/lib/monitor.rb:214:in `mon_synchronize' | |
from /home/eregon/code/ruby/lib/rinda/tuplespace.rb:488:in `move' | |
from /home/eregon/code/ruby/lib/rinda/rinda.rb:274:in `block in take' | |
from /home/eregon/code/ruby/lib/rinda/rinda.rb:223:in `deliver' | |
from /home/eregon/code/ruby/lib/rinda/rinda.rb:273:in `take' | |
from /home/eregon/code/ruby/test/rinda/test_rinda.rb:244:in `block in test_ruby_talk_264062' | |
Thread terminated with | |
/home/eregon/code/ruby/lib/rinda/tuplespace.rb:535:in `block in read': Rinda::RequestExpiredError (Rinda::RequestExpiredError) | |
from /home/eregon/code/ruby/lib/monitor.rb:214:in `mon_synchronize' | |
from /home/eregon/code/ruby/lib/rinda/tuplespace.rb:525:in `read' | |
from /home/eregon/code/ruby/lib/rinda/rinda.rb:282:in `read' | |
from /home/eregon/code/ruby/test/rinda/test_rinda.rb:250:in `block in test_ruby_talk_264062' | |
[ 2730/16624] Rinda::TupleSpaceProxyTest#test_take_bug_8215 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/drb/drb.rb:575:in `read': Interrupt (Interrupt) | |
from /home/eregon/code/ruby/lib/drb/drb.rb:575:in `load' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:641:in `recv_reply' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:941:in `recv_reply' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1254:in `send_message' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1142:in `block (2 levels) in method_missing' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1229:in `open' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1141:in `block in method_missing' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1160:in `with_friend' | |
from /home/eregon/code/ruby/lib/drb/drb.rb:1140:in `method_missing' | |
from /home/eregon/code/ruby/lib/rinda/rinda.rb:274:in `block in take' | |
from /home/eregon/code/ruby/lib/rinda/rinda.rb:223:in `deliver' | |
from /home/eregon/code/ruby/lib/rinda/rinda.rb:273:in `take' | |
from -e:6:in `block in <main>' | |
[ 2735/16624] Rinda::TupleSpaceTest#test_cancel_01 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/rinda/tuplespace.rb:502:in `block in move': Rinda::RequestCanceledError (Rinda::RequestCanceledError) | |
from /home/eregon/code/ruby/lib/monitor.rb:214:in `mon_synchronize' | |
from /home/eregon/code/ruby/lib/rinda/tuplespace.rb:488:in `move' | |
from /home/eregon/code/ruby/lib/rinda/tuplespace.rb:479:in `take' | |
from /home/eregon/code/ruby/test/rinda/test_rinda.rb:351:in `block in test_cancel_01' | |
[ 2736/16624] Rinda::TupleSpaceTest#test_cancel_02 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/rinda/tuplespace.rb:534:in `block in read': Rinda::RequestCanceledError (Rinda::RequestCanceledError) | |
from /home/eregon/code/ruby/lib/monitor.rb:214:in `mon_synchronize' | |
from /home/eregon/code/ruby/lib/rinda/tuplespace.rb:525:in `read' | |
from /home/eregon/code/ruby/test/rinda/test_rinda.rb:380:in `block in test_cancel_02' | |
[ 2741/16624] Rinda::TupleSpaceTest#test_ruby_talk_264062 | |
Thread terminated with | |
/home/eregon/code/ruby/lib/rinda/tuplespace.rb:503:in `block in move': Rinda::RequestExpiredError (Rinda::RequestExpiredError) | |
from /home/eregon/code/ruby/lib/monitor.rb:214:in `mon_synchronize' | |
from /home/eregon/code/ruby/lib/rinda/tuplespace.rb:488:in `move' | |
from /home/eregon/code/ruby/lib/rinda/tuplespace.rb:479:in `take' | |
from /home/eregon/code/ruby/test/rinda/test_rinda.rb:244:in `block in test_ruby_talk_264062' | |
Thread terminated with | |
/home/eregon/code/ruby/lib/rinda/tuplespace.rb:535:in `block in read': Rinda::RequestExpiredError (Rinda::RequestExpiredError) | |
from /home/eregon/code/ruby/lib/monitor.rb:214:in `mon_synchronize' | |
from /home/eregon/code/ruby/lib/rinda/tuplespace.rb:525:in `read' | |
from /home/eregon/code/ruby/test/rinda/test_rinda.rb:250:in `block in test_ruby_talk_264062' | |
[ 2743/16624] SyncTest#test_sync_lock_and_raise | |
Thread terminated with | |
/home/eregon/code/ruby/lib/sync.rb:154:in `sleep': unhandled exception | |
from /home/eregon/code/ruby/lib/sync.rb:154:in `block (2 levels) in sync_lock' | |
from /home/eregon/code/ruby/lib/sync.rb:141:in `synchronize' | |
from /home/eregon/code/ruby/lib/sync.rb:141:in `block in sync_lock' | |
from /home/eregon/code/ruby/lib/sync.rb:139:in `handle_interrupt' | |
from /home/eregon/code/ruby/lib/sync.rb:139:in `sync_lock' | |
from /home/eregon/code/ruby/test/thread/test_sync.rb:55:in `block in test_sync_lock_and_raise' | |
[ 3952/16624] TestConditionVariable#test_condvar_wait_exception_handling | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_cv.rb:44:in `sleep': interrupt a dead condition variable (Interrupt) | |
from /home/eregon/code/ruby/test/thread/test_cv.rb:44:in `wait' | |
from /home/eregon/code/ruby/test/thread/test_cv.rb:44:in `block (2 levels) in test_condvar_wait_exception_handling' | |
from /home/eregon/code/ruby/test/thread/test_cv.rb:42:in `synchronize' | |
from /home/eregon/code/ruby/test/thread/test_cv.rb:42:in `block in test_condvar_wait_exception_handling' | |
[ 3965/16624] TestContinuation#test_error | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_continuation.rb:41:in `call': continuation called across threads (RuntimeError) | |
from /home/eregon/code/ruby/test/ruby/test_continuation.rb:41:in `block (2 levels) in test_error' | |
[ 4194/16624] TestDigest::TestDigestParen#test_race_mixed = 0.23 s | |
3) Failure: | |
TestDigest::TestDigestParen#test_race_mixed [/home/eregon/code/ruby/test/digest/test_digest.rb:257]: | |
assert_separately failed with error message | |
pid 29378 exit 0 | |
| | |
| Thread terminated with | |
| -:9:in `block (2 levels) in <main>': undefined method `new' for nil:NilClass (NoMethodError) | |
[ 4790/16624] TestFiber#test_error | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_fiber.rb:75:in `resume': fiber called across threads (FiberError) | |
from /home/eregon/code/ruby/test/ruby/test_fiber.rb:75:in `block (2 levels) in test_error' | |
[ 4801/16624] TestFiber#test_resume_root_fiber | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_fiber.rb:204:in `resume': double resume (FiberError) | |
from /home/eregon/code/ruby/test/ruby/test_fiber.rb:204:in `block (2 levels) in test_resume_root_fiber' | |
[ 6937/16624] TestGemRequestConnectionPool#test_thread_waits_for_connection | |
Thread terminated with | |
/home/eregon/code/ruby/lib/rubygems/request/http_pool.rb:20:in `pop': execution expired (Timeout::Error) | |
from /home/eregon/code/ruby/lib/rubygems/request/http_pool.rb:20:in `checkout' | |
from /home/eregon/code/ruby/test/rubygems/test_gem_request_connection_pools.rb:123:in `block (2 levels) in test_thread_waits_for_connection' | |
from /home/eregon/code/ruby/lib/timeout.rb:106:in `timeout' | |
from /home/eregon/code/ruby/test/rubygems/test_gem_request_connection_pools.rb:122:in `block in test_thread_waits_for_connection' | |
[ 8093/16624] TestIO#test_cross_thread_close_stdio = 0.13 s | |
4) Failure: | |
TestIO#test_cross_thread_close_stdio [/home/eregon/code/ruby/test/ruby/test_io.rb:2715]: | |
assert_separately failed with error message | |
pid 32203 exit 0 | |
| | |
| Thread terminated with | |
| -:10:in `read': stream closed (IOError) | |
| from -:10:in `block (2 levels) in <main>' | |
[ 8150/16624] TestIO#test_read_unlocktmp_ensure | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_io.rb:3169:in `read': unhandled exception | |
from /home/eregon/code/ruby/test/ruby/test_io.rb:3169:in `block (2 levels) in test_read_unlocktmp_ensure' | |
[ 8165/16624] TestIO#test_readpartial_unlocktmp_ensure | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_io.rb:3183:in `readpartial': unhandled exception | |
from /home/eregon/code/ruby/test/ruby/test_io.rb:3183:in `block (2 levels) in test_readpartial_unlocktmp_ensure' | |
[ 8194/16624] TestIO#test_sysread_unlocktmp_ensure | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_io.rb:3208:in `sysread': unhandled exception | |
from /home/eregon/code/ruby/test/ruby/test_io.rb:3208:in `block (2 levels) in test_sysread_unlocktmp_ensure' | |
[10896/16624] TestProcess#test_wait_and_sigchild | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_process.rb:1544:in `block (2 levels) in test_wait_and_sigchild': unhandled exception | |
[10928/16624] TestQueue#test_blocked_pushers | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:375:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:375:in `block (2 levels) in test_blocked_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:375:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:375:in `block (2 levels) in test_blocked_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:375:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:375:in `block (2 levels) in test_blocked_pushers' | |
[10929/16624] TestQueue#test_blocked_pushers_empty | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:453:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:453:in `block (2 levels) in test_blocked_pushers_empty' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:453:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:453:in `block (2 levels) in test_blocked_pushers_empty' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:453:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:453:in `block (2 levels) in test_blocked_pushers_empty' | |
[10932/16624] TestQueue#test_deny_pushers | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
Thread terminated with | |
/home/eregon/code/ruby/test/thread/test_queue.rb:420:in `push': queue closed (ClosedQueueError) | |
from /home/eregon/code/ruby/test/thread/test_queue.rb:420:in `block (4 levels) in test_deny_pushers' | |
[13205/16624] TestReadline#test_readline | |
Thread terminated with | |
/home/eregon/code/ruby/lib/open-uri.rb:37:in `open': Insecure operation - open (SecurityError) | |
from /home/eregon/code/ruby/lib/open-uri.rb:37:in `open' | |
from /home/eregon/code/ruby/test/readline/test_readline.rb:470:in `replace_stdio' | |
from /home/eregon/code/ruby/test/readline/test_readline.rb:51:in `block (3 levels) in test_readline' | |
[14014/16624] TestSocket#test_closed_read | |
Thread terminated with | |
/home/eregon/code/ruby/test/socket/test_socket.rb:537:in `readline': stream closed (IOError) | |
from /home/eregon/code/ruby/test/socket/test_socket.rb:537:in `block in test_closed_read' | |
[15693/16624] TestThread#test_abort_on_exception = 0.03 s | |
5) Failure: | |
TestThread#test_abort_on_exception [/home/eregon/code/ruby/test/ruby/test_thread.rb:297]: | |
1. [2/2] Assertion for "stderr" | |
| <[]> expected but was | |
| <["", "Thread terminated with", "-:3:in `block in <main>': unhandled exception"]>. | |
[15699/16624] TestThread#test_handle_interrupt_and_io = 0.03 s | |
6) Failure: | |
TestThread#test_handle_interrupt_and_io [/home/eregon/code/ruby/test/ruby/test_thread.rb:715]: | |
1. [2/2] Assertion for "stderr" | |
| <[]> expected but was | |
| <["", | |
| "Thread terminated with", | |
| "-:4:in `block in <main>': RuntimeError (RuntimeError)"]>. | |
[15700/16624] TestThread#test_handle_interrupt_and_p = 0.03 s | |
7) Failure: | |
TestThread#test_handle_interrupt_and_p [/home/eregon/code/ruby/test/ruby/test_thread.rb:735]: | |
1. [2/2] Assertion for "stderr" | |
| <[]> expected but was | |
| <["", | |
| "Thread terminated with", | |
| "-:4:in `handle_interrupt': RuntimeError (RuntimeError)", | |
| "\tfrom -:4:in `block in <main>'"]>. | |
[15701/16624] TestThread#test_handle_interrupt_blocking | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_thread.rb:700:in `sleep': RuntimeError (RuntimeError) | |
from /home/eregon/code/ruby/test/ruby/test_thread.rb:700:in `block (2 levels) in test_handle_interrupt_blocking' | |
from /home/eregon/code/ruby/test/ruby/test_thread.rb:695:in `handle_interrupt' | |
from /home/eregon/code/ruby/test/ruby/test_thread.rb:695:in `block in test_handle_interrupt_blocking' | |
[15719/16624] TestThread#test_mutex_illegal_unlock | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_thread.rb:543:in `unlock': Attempt to unlock a mutex which is locked by another thread (ThreadError) | |
from /home/eregon/code/ruby/test/ruby/test_thread.rb:543:in `block (2 levels) in test_mutex_illegal_unlock' | |
[15731/16624] TestThread#test_report_on_exception = 0.03 s | |
8) Failure: | |
TestThread#test_report_on_exception [/home/eregon/code/ruby/test/ruby/test_thread.rb:357]: | |
should not inherit from the parent thread. | |
<false> expected but was | |
<true>. | |
[15734/16624] TestThread#test_status_and_stop_p | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_thread.rb:404:in `block in test_status_and_stop_p': die now (RuntimeError) | |
[15743/16624] TestThread#test_thread_join_main_thread | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_thread.rb:897:in `join': Target thread must not be main thread (ThreadError) | |
from /home/eregon/code/ruby/test/ruby/test_thread.rb:897:in `block (2 levels) in test_thread_join_main_thread' | |
[15746/16624] TestThread#test_thread_local_security | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_thread.rb:490:in `[]=': can't modify frozen thread locals (RuntimeError) | |
from /home/eregon/code/ruby/test/ruby/test_thread.rb:490:in `block (2 levels) in test_thread_local_security' | |
[15750/16624] TestThread#test_thread_status_raise_after_kill | |
Thread terminated with | |
/home/eregon/code/ruby/test/ruby/test_thread.rb:950:in `sleep': wakeup (RuntimeError) | |
from /home/eregon/code/ruby/test/ruby/test_thread.rb:950:in `ensure in block in test_thread_status_raise_after_kill' | |
from /home/eregon/code/ruby/test/ruby/test_thread.rb:952:in `block in test_thread_status_raise_after_kill' | |
Leaked file descriptor: TestWEBrickSSLServer#test_self_signed_cert_server: 21 : #<TCPSocket:fd 21> | |
Closed file descriptor: TestWeakMap#test_include?: 21 | |
Finished tests in 302.014971s, 55.0205 tests/s, 9573.2870 assertions/s. | |
16617 tests, 2891276 assertions, 7 failures, 1 errors, 35 skips |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment