OLDREV 31218 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=31218&diff_format=u NEWREV 31229 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=31229&diff_format=u CHG ChangeLog 31218->31229 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?p1=trunk/ChangeLog&r1=31218&r2=31229&pathrev=31229&diff_format=u CHG eval.c 30953->31219 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/eval.c?p1=trunk/eval.c&r1=31218&r2=31229&pathrev=31229&diff_format=u CHG version.h 31212->31226 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/version.h?p1=trunk/version.h&r1=31218&r2=31229&pathrev=31229&diff_format=u CHG vm_core.h 30852->31227 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/vm_core.h?p1=trunk/vm_core.h&r1=31218&r2=31229&pathrev=31229&diff_format=u CHG vm_insnhelper.c 31170->31222 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/vm_insnhelper.c?p1=trunk/vm_insnhelper.c&r1=31218&r2=31229&pathrev=31229&diff_format=u CHG bootstraptest/test_eval.rb 27716->31221 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/bootstraptest/test_eval.rb?p1=trunk/bootstraptest/test_eval.rb&r1=31218&r2=31229&pathrev=31229&diff_format=u CHG ext/strscan/strscan.c 31176->31223 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/strscan/strscan.c?p1=trunk/ext/strscan/strscan.c&r1=31218&r2=31229&pathrev=31229&diff_format=u CHG ext/syslog/syslog.c 30938->31229 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/syslog/syslog.c?p1=trunk/ext/syslog/syslog.c&r1=31218&r2=31229&pathrev=31229&diff_format=u CHG lib/webrick/cookie.rb 25184->31228 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/lib/webrick/cookie.rb?p1=trunk/lib/webrick/cookie.rb&r1=31218&r2=31229&pathrev=31229&diff_format=u CHG misc/ruby-mode.el 31218->31224 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/misc/ruby-mode.el?p1=trunk/misc/ruby-mode.el&r1=31218&r2=31229&pathrev=31229&diff_format=u CHG test/ruby/test_module.rb 31215->31222 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/test/ruby/test_module.rb?p1=trunk/test/ruby/test_module.rb&r1=31218&r2=31229&pathrev=31229&diff_format=u CHG test/webrick/test_cookie.rb 25184->31228 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/test/webrick/test_cookie.rb?p1=trunk/test/webrick/test_cookie.rb&r1=31218&r2=31229&pathrev=31229&diff_format=u COMMIT [Charles Oliver Nutter] Add spec for each_line (and friends) with no separator argument. http://github.com/rubyspec/rubyspec/commit/2002b8b9071e9e48a72236c9f864d7df0f15c1ec COMMIT [Charles Oliver Nutter] Add specs for ENV always producing frozen strings in locale encoding, regardless of incoming. http://github.com/rubyspec/rubyspec/commit/02bc048c201328a72036767820645e3de0a81eaf =================================================================== +++ 20110401T224108Z @@ 8719 @@ Syck::YAML_Unit_Tests#test_symbol_cycle = s = . Syck::YAML_Unit_Tests#test_time_now_cycle = s = . Syck::YAML_Unit_Tests#test_ypath_parsing = s = . +TC_Enumerable#test_to_set = s = . TC_HMAC_MD5#test_hexdigest = s = . TC_HMAC_MD5#test_reset = s = . TC_HMAC_MD5#test_s_hexdigest = s = . @@ 14113 @@ TestModule#test_const_set = s = . TestModule#test_const_set2 = s = . TestModule#test_constant_lookup_in_method_defined_by_class_eval = s = . +TestModule#test_constant_lookup_in_module_in_class_eval = s = . +TestModule#test_constant_lookup_in_toplevel_class_eval = s = . TestModule#test_constants = s = . TestModule#test_constants_with_private_constant = s = . TestModule#test_cyclic_include = s = . @@ 18412 @@ s = . TestWEBrickCookie#test_new = s = . TestWEBrickCookie#test_parse = s = . +TestWEBrickCookie#test_parse_non_whitespace = s = . TestWEBrickCookie#test_parse_set_cookie = s = . TestWEBrickCookie#test_parse_set_cookies = s = . TestWEBrickCookie#test_time = s = . @@ 18791 @@ test_singleton_class(TestRubyMode::TestIndent) [/home/chkbuild/tmp/build/ruby-trunk//ruby/test/misc/test_ruby_mode.rb:106]: pending +9445 tests, assertions, 1 failures, 1 errors, 2 skips make: *** [yes-test-all] エラー 2 exit 2 failed(test-all) @@ 24073 @@ ENV.[] - returns the specified environment variable - returns nil if the variable isn't found +- returns only frozen values - uses the locale encoding /home/chkbuild/tmp/build/ruby-trunk//rubyspec/core/env/element_set_spec.rb @@ 28542 @@ - registers a file to load the first time the named constant is accessed - sets the autoload constant in Object's constant table - loads the file when the constant is accessed +- does not call Kernel.require or Kernel.load to load the file (ERROR - ) Kernel#autoload? - is a private method @@ 33579 @@ /home/chkbuild/tmp/build/ruby-trunk//rubyspec/core/string/each_line_spec.rb String#each_line +- splits using default newline separator when none is specified - splits self using the supplied record separator and passes each substring to the block - taints substrings that are passed to the block if self is tainted - passes self as a whole to the block if the separator is nil @@ 34009 @@ /home/chkbuild/tmp/build/ruby-trunk//rubyspec/core/string/lines_spec.rb String#lines +- splits using default newline separator when none is specified - splits self using the supplied record separator and passes each substring to the block - taints substrings that are passed to the block if self is tainted - passes self as a whole to the block if the separator is nil @@ 48935 @@ /home/chkbuild/tmp/build/ruby-trunk//rubyspec/core/fiber/resume_spec.rb:4:in `' ) +Kernel#autoload does not call Kernel.require or Kernel.load to load the file ERROR +NameError: uninitialized constant KSAutoloadC +/home/chkbuild/tmp/build/ruby-trunk//rubyspec/core/kernel/autoload_spec.rb:49:in `block (2 levels) in ' +/home/chkbuild/tmp/build/ruby-trunk//rubyspec/core/kernel/autoload_spec.rb:15:in `' ) Module#autoload does not load the file when refering to the constant in defined? FAILED @@ 48965 @@ Finished in seconds +3331 files, 17273 examples, expectations, 4 failures, 1 error exit 1 failed(rubyspec) == dist #