[#70977] [Ruby trunk - Feature #11473] Immutable String literal in Ruby 3 — arai@...
Issue #11473 has been updated by Shunichi Arai.
3 messages
2015/10/04
[#71062] [Ruby trunk - Bug #10892] Deadlock in autoload — eregontp@...
Issue #10892 has been updated by Benoit Daloze.
4 messages
2015/10/12
[#71090] Re: [Ruby trunk - Bug #10892] Deadlock in autoload
— Eric Wong <normalperson@...>
2015/10/14
eregontp@gmail.com wrote:
[#71127] [Ruby trunk - Feature #11607] [PATCH] fiddle: release GVL for ffi_call — normalperson@...
Issue #11607 has been updated by Eric Wong.
3 messages
2015/10/20
[#71164] [Ruby trunk - Feature #11614] [Open] [RFC] use id_table for constant tables — normalperson@...
Issue #11614 has been reported by Eric Wong.
3 messages
2015/10/22
[#71211] [Ruby trunk - Feature #11607] [PATCH] fiddle: release GVL for ffi_call — naruse@...
Issue #11607 has been updated by Yui NARUSE.
6 messages
2015/10/27
[#71212] Re: [Ruby trunk - Feature #11607] [PATCH] fiddle: release GVL for ffi_call
— Eric Wong <normalperson@...>
2015/10/27
Yes, user must check if the function is MT-safe. Probably fine
[#71246] Re: [Ruby trunk - Feature #11607] [PATCH] fiddle: release GVL for ffi_call
— Aaron Patterson <tenderlove@...>
2015/10/28
On Tue, Oct 27, 2015 at 08:54:07AM +0000, Eric Wong wrote:
[#71254] Re: [Ruby trunk - Feature #11607] [PATCH] fiddle: release GVL for ffi_call
— Eric Wong <normalperson@...>
2015/10/28
Aaron Patterson <tenderlove@ruby-lang.org> wrote:
[#71230] [Ruby trunk - Feature #11625] Unlock GVL for SHA1 calculations — tenderlove@...
Issue #11625 has been updated by Aaron Patterson.
5 messages
2015/10/27
[#71236] Re: [Ruby trunk - Feature #11625] Unlock GVL for SHA1 calculations
— Юрий Соколов <funny.falcon@...>
2015/10/28
What's about other hashsum algos? MD5, SHA2, etc
[#71242] Re: [Ruby trunk - Feature #11625] Unlock GVL for SHA1 calculations
— Eric Wong <normalperson@...>
2015/10/28
Юрий Соколов <funny.falcon@gmail.com> wrote:
[#71239] [Ruby trunk - Bug #11384] multi-threaded autoload sometimes fails — shugo@...
Issue #11384 has been updated by Shugo Maeda.
4 messages
2015/10/28
[ruby-core:71142] id_table cannot work for const_tbl
From:
Eric Wong <normalperson@...>
Date:
2015-10-22 02:47:15 UTC
List:
ruby-core #71142
[Posting to hopefully prevent somebody else from going down
the same path I did and wasting time working on a patch]
I started working on the following patch to use id_table for
const tables, but apparently ordering matters for class path name
resolution:
http://80x24.org/spew/20151022023752.9038-1-e%4080x24.org/raw
So unless I'm missing something, I'll reject it.
All tests pass with ID_TABLE_IMPL 1 (st) with id_table, though
(but of course we want to avoid st to save memory).
WEBrick test failures:
1) Failure:
TestWEBrickHTTPAuth#test_basic_auth [/ruby/test/webrick/utils.rb:60]:
exceptions on 1 threads:
#<Thread:0x002b8597d42ab8@/ruby/test/webrick/utils.rb:46 dead>:
/ruby/test/lib/minitest/unit.rb:200:in `assert': Expected /ERROR WEBrick::HTTPStatus::Unauthorized/ to match "[2015-10-22 02:35:17] ERROR WEBrick::HTTPAuth::Authenticator::AuthException\n". (MiniTest::Assertion)
from /ruby/test/lib/test/unit/assertions.rb:36:in `assert'
from /ruby/test/lib/minitest/unit.rb:292:in `assert_match'
from /ruby/test/webrick/test_httpauth.rb:12:in `block in test_basic_auth'
from /ruby/test/webrick/utils.rb:49:in `block in start_server'
2) Failure:
TestWEBrickHTTPAuth#test_basic_auth2 [/ruby/test/webrick/utils.rb:60]:
exceptions on 1 threads:
#<Thread:0x002b85980ebd18@/ruby/test/webrick/utils.rb:46 dead>:
/ruby/test/lib/minitest/unit.rb:200:in `assert': webrick log doesn't have expected error: /ERROR WEBrick::HTTPStatus::Unauthorized/ (MiniTest::Assertion)
from /ruby/test/lib/test/unit/assertions.rb:36:in `assert'
from /ruby/test/webrick/test_httpauth.rb:41:in `block (2 levels) in test_basic_auth2'
from /ruby/test/webrick/test_httpauth.rb:40:in `each'
from /ruby/test/webrick/test_httpauth.rb:40:in `block in test_basic_auth2'
from /ruby/test/webrick/utils.rb:49:in `block in start_server'
3) Failure:
TestWEBrickHTTPAuth#test_digest_auth [/ruby/test/webrick/utils.rb:60]:
exceptions on 1 threads:
#<Thread:0x002b85981beb50@/ruby/test/webrick/utils.rb:46 dead>:
/ruby/test/lib/minitest/unit.rb:200:in `assert': webrick log doesn't have expected error: /ERROR WEBrick::HTTPStatus::Unauthorized/ (MiniTest::Assertion)
from /ruby/test/lib/test/unit/assertions.rb:36:in `assert'
from /ruby/test/webrick/test_httpauth.rb:119:in `block (2 levels) in test_digest_auth'
from /ruby/test/webrick/test_httpauth.rb:118:in `each'
from /ruby/test/webrick/test_httpauth.rb:118:in `block in test_digest_auth'
from /ruby/test/webrick/utils.rb:49:in `block in start_server'