[#41531] [Bug #3385] ext/dbm: accept various version of db — Takahiro Kambe <redmine@...>
Bug #3385: ext/dbm: accept various version of db
2010年6月3日23:38 Takahiro Kambe <redmine@ruby-lang.org>:
2011年11月12日8:14 Tanaka Akira <akr@fsij.org>:
[#41536] RUBY_DEBUG=gc_stress [FATAL] failed to allocate memory — Tanaka Akira <akr@...>
コンパイル時に RUBY_DEBUG_ENV というマクロを定義しておくと、
[#41543] [Bug #3398] 1.9.2 SEGV during test-all — Yuki Sonoda <redmine@...>
Bug #3398: 1.9.2 SEGV during test-all
[#41597] [Bug #3433] Error that occurs by BasicSocket#sendmsg — Masaya Tarui <redmine@...>
Bug #3433: Error that occurs by BasicSocket#sendmsg
[#41600] 質問・提案:cgi.rbの後継となるライブラリについて — Dice <tetradice@...>
Diceです。cgi.rbの後継ライブラリについて質問させてください。
藤岡です。
かくたにです。
藤岡さん、かくたにさん、返信ありがとうございます。
藤岡です。
Diceです。藤岡さん、返信ありがとうございます。
[#41610] [Bug #3443] requireが遅くなる — Yusuke Endoh <redmine@...>
Bug #3443: requireが遅くなる
[#41623] [Feature:trunk] argument delegation — Nobuyoshi Nakada <nobu@...>
なかだです。
遠藤です。
まつもと ゆきひろです
前田です。
[#41672] [Bug #3463] 1.9.2-preview3 で [BUG] gc_sweep(): unknown data type 0x0 — Tomoyuki Chikanaga <redmine@...>
チケット #3463 が更新されました。 (by Tomoyuki Chikanaga)
[#41674] [Bug #3464] win32ole failure load TYPELIB on mswin64 vista — sakiyama shin <redmine@...>
Bug #3464: win32ole failure load TYPELIB on mswin64 vista
[#41702] WIN32OLE_METHOD offset_vtbl — kuwamoto shintaro <beuniv@...>
こんばんわ
助田です。
こんにちは、なかむら(う)です。
助田です。
artonです。
2010/6/24 arton <artonx@yahoo.co.jp>:
[#41705] [Bug #3471][Rejected] ./miniruby sample/test.rbで1NotOK — Shyouhei Urabe <redmine@...>
チケット #3471 が更新されました。 (by Shyouhei Urabe)
2010年6月24日16:53 Shyouhei Urabe <redmine@ruby-lang.org>:
[#41711] [Bug #3473] make clear-installed-list — Usaku NAKAMURA <redmine@...>
Bug #3473: make clear-installed-list
[#41730] (ruby/tk) ruby_1_9_2 への backport — Hidetoshi NAGAI <nagai@...>
永井@知能.九工大です.
[#41752] [Bug #3490][Assigned] test_pack_utf8 failure on mswin64 — Yusuke Endoh <redmine@...>
チケット #3490 が更新されました。 (by Yusuke Endoh)
[#41760] Hash[] の引数が Array の場合の振る舞い — とみたまさひろ <tommy@...>
とみたです。
[ruby-dev:41501] Re: [Feature #3203] LazySweepGC patch
2010年6月1日10:55 KISHIMOTO, Makoto <ksmakoto@dd.iij4u.or.jp>:
>
> 1) Error:
> test_cgi_core_htmltype(CGICoreTest):
> TypeError: can't convert NoMethodError into String
> /export/home/ksmakoto/ruby-trunk/test/cgi/test_cgi_core.rb:339:in `test_cgi_core_htmltype'
>
> 9 tests, 75 assertions, 0 failures, 1 errors, 0 skips
>
> Test run options: --seed 49582
これ、いろんなところで出ますねぇ。
現時点で、以下が観測できました。
TypeError: can't convert Array into String
test/rake/test_fileutils.rb:130:in `test_fileutils_method
TypeError: can't convert Array into String
test/ruby/test_basicinstructions.rb:208:in `set_lvar_in_another_method'
TypeError: can't convert Array into String
test/test_delegate.rb:111:in `test_instance_method'
TypeError: can't convert Array into String
test/test_syslog.rb:13:in `test_new'
TypeError: can't convert NoMethodError into String
test/cgi/test_cgi_core.rb:339:in `test_cgi_core_htmltype'
TypeError: can't convert NoMethodError into String
test/date/test_date_arith.rb:87:in `test_prev'
TypeError: can't convert NoMethodError into String
test/rake/test_fileutils.rb:130:in `test_fileutils_methods_dont_leak'
TypeError: can't convert NoMethodError into String
test/ruby/test_alias.rb:44:in `test_alias'
TypeError: can't convert NoMethodError into String
test/ruby/test_clone.rb:24:in `test_clone'
TypeError: can't convert NoMethodError into String
test/ruby/test_complex.rb:1070:in `test_ruby19'
TypeError: can't convert NoMethodError into String
test/ruby/test_complexrational.rb:104:in `test_comp_srat'
TypeError: can't convert NoMethodError into String
test/ruby/test_exception.rb:312:in `test_nomethoderror'
TypeError: can't convert NoMethodError into String
test/test_delegate.rb:111:in `test_instance_method'
TypeError: can't convert NoMethodError into String
test/test_delegate.rb:124:in `test_private_method'
それぞれどんなコードかと思って調べると...
test/rake/test_fileutils.rb:130
assert_raise(NoMethodError) { obj.copy } # from FileUtils
test/ruby/test_basicinstructions.rb:208
assert_raise(NameError) { a }
test/test_delegate.rb:111
assert_raise(NoMethodError, '[ruby-dev:40314]#3') {m.call}
test/test_syslog.rb:13
assert_raises(NoMethodError) {
test/cgi/test_cgi_core.rb:339
assert_raise(NoMethodError) do cgi.doctype end
test/date/test_date_arith.rb:87
assert_raise(NoMethodError) do
test/rake/test_fileutils.rb:130
assert_raise(NoMethodError) { obj.copy } # from FileUtils
test/ruby/test_alias.rb:44
assert_raise(NoMethodError) { x.foo }
test/ruby/test_clone.rb:24
assert_raise(NoMethodError) {foo.test2}
test/ruby/test_complex.rb:1070
assert_raise(NoMethodError){ Complex.new(1) }
test/ruby/test_complexrational.rb:104
assert_raise(NoMethodError){c <=> 2}
test/ruby/test_exception.rb:312
e = assert_raise(NoMethodError) {str.__send__(id)}
test/test_delegate.rb:111
assert_raise(NoMethodError, '[ruby-dev:40314]#3') {m.call}
test/test_delegate.rb:124
assert_raise(NoMethodError) {foo.delegate_test_private}
みごとにすべて assert_raise (と assert_raises) ですな。
--
[田中 哲][たなか あきら][Tanaka Akira]