OLDREV 32657 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=32657&diff_format=u NEWREV 32672 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=32672&diff_format=u CHG ChangeLog 32657->32671 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?p1=trunk/ChangeLog&r1=32657&r2=32672&pathrev=32672&diff_format=u CHG gc.c 32441->32669 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/gc.c?p1=trunk/gc.c&r1=32657&r2=32672&pathrev=32672&diff_format=u CHG proc.c 32645->32671 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/proc.c?p1=trunk/proc.c&r1=32657&r2=32672&pathrev=32672&diff_format=u CHG version.h 32646->32672 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/version.h?p1=trunk/version.h&r1=32657&r2=32672&pathrev=32672&diff_format=u CHG vm_core.h 32510->32669 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/vm_core.h?p1=trunk/vm_core.h&r1=32657&r2=32672&pathrev=32672&diff_format=u CHG vm_method.c 32621->32669 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/vm_method.c?p1=trunk/vm_method.c&r1=32657&r2=32672&pathrev=32672&diff_format=u CHG ext/openssl/ossl_ssl.c 32344->32658 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/openssl/ossl_ssl.c?p1=trunk/ext/openssl/ossl_ssl.c&r1=32657&r2=32672&pathrev=32672&diff_format=u CHG ext/openssl/lib/openssl.rb 30152->32664 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/openssl/lib/openssl.rb?p1=trunk/ext/openssl/lib/openssl.rb&r1=32657&r2=32672&pathrev=32672&diff_format=u DEL ext/openssl/lib/openssl/ssl-internal.rb 29189->none http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/openssl/lib/openssl/ssl-internal.rb?view=markup&pathrev=32657&diff_format=u CHG ext/openssl/lib/openssl/ssl.rb 25184->32664 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/openssl/lib/openssl/ssl.rb?p1=trunk/ext/openssl/lib/openssl/ssl.rb&r1=32657&r2=32672&pathrev=32672&diff_format=u DEL ext/openssl/lib/openssl/x509-internal.rb 29217->none http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/openssl/lib/openssl/x509-internal.rb?view=markup&pathrev=32657&diff_format=u CHG ext/openssl/lib/openssl/x509.rb 30152->32664 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/openssl/lib/openssl/x509.rb?p1=trunk/ext/openssl/lib/openssl/x509.rb&r1=32657&r2=32672&pathrev=32672&diff_format=u CHG lib/xmlrpc/client.rb 25189->32666 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/lib/xmlrpc/client.rb?p1=trunk/lib/xmlrpc/client.rb&r1=32657&r2=32672&pathrev=32672&diff_format=u CHG test/rake/test_rake_directory_task.rb 32217->32670 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/test/rake/test_rake_directory_task.rb?p1=trunk/test/rake/test_rake_directory_task.rb&r1=32657&r2=32672&pathrev=32672&diff_format=u ADD test/xmlrpc/htpasswd none->32667 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/test/xmlrpc/htpasswd?view=markup&pathrev=32672&diff_format=u CHG test/xmlrpc/test_webrick_server.rb 26542->32666 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/test/xmlrpc/test_webrick_server.rb?p1=trunk/test/xmlrpc/test_webrick_server.rb&r1=32657&r2=32672&pathrev=32672&diff_format=u COMMIT [NARUSE, Yui] Add require shared/basic. http://github.com/rubyspec/rubyspec/commit/a446199cfbcbb88e65724032bf8a3523731afea2 COMMIT [NARUSE, Yui] Change require order. http://github.com/rubyspec/rubyspec/commit/ea0ae038fd0e3ab995c44657dbb3f22ef7fa450d =================================================================== +++ 20110725T190146Z @@ 580 @@ vm_exec.c::17: warning: "__i386__" is not defined vm_exec.c::19: warning: "__x86_64__" is not defined vm_exec.c::5: warning: "USE_MACHINE_REGS" is not defined +In file included from vm.c:27: +vm_method.c: In function 'rb_gc_mark_unlinked_live_method_entries': +vm_method.c:: warning: unused variable 'curr_ume' +vm_method.c:: warning: unused variable 'prev_ume' compiling vm_dump.c vm_dump.c::5: warning: "VMDEBUG" is not defined vm_dump.c::5: warning: "VMDEBUG" is not defined @@ 891 @@ # test_io.rb:44 . # test_io.rb:60 . # test_io.rb:79 . +# test_io.rb:99 F # test_io.rb:99 . # test_io.rb:106 . @@ 1602 @@ # test_thread.rb:439 . # test_thread.rb:447 . +# test_io.rb:99: + at_exit { p :foo } + megacontent = "abc" * 12345678 + #File.open("megasrc", "w") {|f| f << megacontent } + Thread.new { sleep rand*0.2; Process.kill(:INT, $$) } + r1, w1 = IO.pipe + r2, w2 = IO.pipe + t1 = Thread.new { w1 << megacontent; w1.close } + t2 = Thread.new { r2.read; r2.close } + IO.copy_stream(r1, w2) rescue nil + w2.close + r1.close + t1.join + t2.join + #=> killed by SIGKILL (signal 9) (timeout) megacontent-copy_stream +FAIL 1/936 tests failed +make: *** [yes-btest] Error 1 exit 2 +failed(btest) == test.rb #