OlderDiff < 20110206T183303Z < ThisDiff > 20110207T183303Z > NewerDiff
OLDREV 30810
NEWREV 30820
CHG ChangeLog 30807->30820
CHG NEWS 30795->30816
CHG common.mk 30507->30813
CHG process.c 30685->30820
CHG version.h 30803->30818
CHG lib/benchmark.rb 30747->30817
CHG lib/rdoc.rb 30795->30815
CHG lib/net/http.rb 30520->30816
CHG lib/rdoc/encoding.rb 30760->30815
CHG lib/rdoc/text.rb 30795->30815
CHG lib/rdoc/generator/darkfish.rb 30413->30815
CHG lib/rdoc/markup/pre_process.rb 30249->30815
CHG misc/ruby-mode.el 30674->30819
CHG test/rdoc/test_rdoc_encoding.rb 30413->30815
CHG test/rdoc/test_rdoc_markup_pre_process.rb 30249->30815
CHG test/rdoc/test_rdoc_options.rb 30795->30815
CHG test/rdoc/test_rdoc_text.rb 30760->30815
CHG test/ruby/test_process.rb 30697->30814
COMMIT Follow r30455: Error#to_s should ensure that the value returned is a string.
COMMIT Ruby doesn't have UNIXSocket#mode.
COMMIT Ruby 1.9's Time#inspect format is "YYYY-MM-DD hh:mm:dd +-ZZZZ".
COMMIT String#tr raises a ArgumentError from Ruby 1.9.2.
===================================================================
+++ 20110207T183303Z
@@ 5764 @@
installing extension headers: /var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/include/ruby-1.9.1/ruby
installing default gems: /var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/lib/ruby/gems/1.9.1 (cache, doc, gems, specifications)
rake 0.8.7
+ rdoc 3.5.3
minitest 2.0.2
== install-doc # <time>
+ make install-doc
@@ 15215 @@
TestRDocEncoding#test_class_set_encoding_strip = <elapsed> s = .
TestRDocEncoding#test_class_set_encoding = <elapsed> s = .
TestRDocEncoding#test_class_read_file = <elapsed> s = .
+TestRDocEncoding#test_class_read_file_encoding_fail = <elapsed> s = .
TestRDocEncoding#test_class_read_file_encoding = <elapsed> s = .
+TestRDocEncoding#test_class_read_file_encoding_force_transcode = <elapsed> s = .
TestRDocEncoding#test_class_set_encoding_bad = <elapsed> s = .
TestRDocEncoding#test_class_read_file_encoding_fancy = <elapsed> s = .
TestRDocEncoding#test_class_read_file_encoding_guess = <elapsed> s = .
@@ 15336 @@
TestRDocMarkupParser#test_parse_bullet_paragraph = <elapsed> s = .
TestRDocMarkupParser#test_parse_lalpha = <elapsed> s = .
TestRDocMarkupParser#test_parse_label = <elapsed> s = .
+TestRDocMarkupPreProcess#test_include_file_encoding_incompatible = <elapsed> s = .
TestRDocMarkupPreProcess#test_handle_registered_code_object = <elapsed> s = .
TestRDocMarkupPreProcess#test_handle_block = <elapsed> s = .
TestRDocMarkupPreProcess#test_handle_registered_block = <elapsed> s = .
@@ 15933 @@
TestRDocText#test_to_html_encoding = <elapsed> s = .
TestRDocText#test_strip_stars_encoding = <elapsed> s = .
TestRDocText#test_flush_left = <elapsed> s = .
+TestRDocText#test_strip_stars_encoding2 = <elapsed> s = .
TestRDocText#test_parse = <elapsed> s = .
TestRDocText#test_to_html_apostrophe = <elapsed> s = .
TestRDocText#test_parse_document = <elapsed> s = .
@@ 15946 @@
TestRDocText#test_strip_hashes = <elapsed> s = .
TestRDocText#test_to_html_double_quote = <elapsed> s = .
TestRDocText#test_strip_hashes_encoding = <elapsed> s = .
+TestRDocText#test_flush_left_encoding = <elapsed> s = .
TestRDocText#test_to_html_html_tag = <elapsed> s = .
TestRDocText#test_to_html_double_quote_quot = <elapsed> s = .
TestRDocText#test_to_html_ellipsis = <elapsed> s = .
@@ 15957 @@
TestRDocText#test_self_encode_fallback = <elapsed> s = .
TestRDocText#test_to_html_registered_trademark = <elapsed> s = .
TestRDocText#test_expand_tabs = <elapsed> s = .
+TestRDocText#test_expand_tabs_encoding = <elapsed> s = .
TestRDocText#test_to_html_backslash = <elapsed> s = .
TestRDocText#test_to_html_double_backtick = <elapsed> s = .
TestRDocText#test_to_html_copyright = <elapsed> s = .
@@ 18878 @@
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/ruby/test/rubygems/test_gem_security.rb:53:in `test_class_build_self_signed_cert'
./test/runner.rb:18:in `<main>'
+9329 tests, <num> assertions, 1 failures, 1 errors, 1 skips
make: *** [yes-test-all] Error 2
exit 2
failed(test-all)
@@ 24341 @@
- returns true if both exceptions have the same class, no message, and no backtrace
- returns true if both exceptions have the same class, the same message, and no backtrace
- returns true if both exceptions have the same class, the same message, and the same backtrace
+- returns false if the two exceptions inherit from Exception but have different classes
- returns true if the two objects subclass Exception and have the same message and backtrace
- returns false if the argument is not an Exception
- returns false if the two exceptions differ only in their backtrace
@@ 24384 @@
Exception#exception
- returns self when passed no argument
- returns self when passed self as an argument
+- returns an exception of the same class as self with the message given as argument
+- returns an exception of the same class as self with the message given as argument, but without reinitializing
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/exception/exit_value_spec.rb
LocalJumpError#exit_value
@@ 34641 @@
- returns a new string with the characters from from_string replaced by the ones in to_string
- accepts c1-c2 notation to denote ranges of characters
- pads to_str with its last char if it is shorter than from_string
+- raises a ArgumentError a descending range in the replacement as containing just the start character
+- raises a ArgumentError a descending range in the source as empty
- translates chars not in from_string when it starts with a ^
- tries to convert from_str and to_str to strings using to_str
- returns subclass instances when called on a subclass
@@ 36229 @@
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/time/at_spec.rb
Time.at
+- converts to time object
- creates a new time object with the value given by time
- creates a dup time object with the value given by time
- is able to create a time object with a float
@@ 48811 @@
<n>)
File::Stat#inspect produces a nicely formatted description of a File::Stat object FAILED
+Expected "#<File::Stat dev=0x0, ino=5366619, mode=0100644, nlink=1, uid=110, gid=101, rdev=0x0, size=8, blksize=4096, blocks=8, atime=2011-02-08 04:18:52 +0900, mtime=2011-02-08 04:18:52 +0900, ctime=2011-02-08 04:18:52 +0900>"
+to equal "#<File::Stat dev=0x803, ino=5366619, mode=0100644, nlink=1, uid=110, gid=101, rdev=0x0, size=8, blksize=4096, blocks=8, atime=2011-02-08 04:18:52 +0900, mtime=2011-02-08 04:18:52 +0900, ctime=2011-02-08 04:18:52 +0900>"
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/file/stat/inspect_spec.rb:17:in `block (2 levels) in <top (required)>'
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/file/stat/inspect_spec.rb:3:in `<top (required)>'
@@ 48891 @@
Finished in <t> seconds
+3330 files, 17074 examples, <num> expectations, 19 failures, 0 errors
exit 1
failed(rubyspec)
== dist # <time>
===================================================================
--- 20110206T183303Z
@@ 5764 @@
installing extension headers: /var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/include/ruby-1.9.1/ruby
installing default gems: /var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/lib/ruby/gems/1.9.1 (cache, doc, gems, specifications)
rake 0.8.7
- rdoc 3.5.2
minitest 2.0.2
== install-doc # <time>
+ make install-doc
@@ 18869 @@
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/ruby/test/rubygems/test_gem_security.rb:53:in `test_class_build_self_signed_cert'
./test/runner.rb:18:in `<main>'
-9323 tests, <num> assertions, 1 failures, 1 errors, 1 skips
make: *** [yes-test-all] Error 2
exit 2
failed(test-all)
@@ 24332 @@
- returns true if both exceptions have the same class, no message, and no backtrace
- returns true if both exceptions have the same class, the same message, and no backtrace
- returns true if both exceptions have the same class, the same message, and the same backtrace
-- returns true if the two exceptions inherit from Exception but have different classes (FAILED - <n>)
- returns true if the two objects subclass Exception and have the same message and backtrace
- returns false if the argument is not an Exception
- returns false if the two exceptions differ only in their backtrace
@@ 24375 @@
Exception#exception
- returns self when passed no argument
- returns self when passed self as an argument
-- returns an exception of the same class as self with the message given as argument (FAILED - <n>)
-- returns an exception of the same class as self with the message given as argument, but without reinitializing (FAILED - <n>)
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/exception/exit_value_spec.rb
LocalJumpError#exit_value
@@ 34632 @@
- returns a new string with the characters from from_string replaced by the ones in to_string
- accepts c1-c2 notation to denote ranges of characters
- pads to_str with its last char if it is shorter than from_string
-- treats a descending range in the replacement as containing just the start character (ERROR - <n>)
-- treats a descending range in the source as empty (ERROR - <n>)
- translates chars not in from_string when it starts with a ^
- tries to convert from_str and to_str to strings using to_str
- returns subclass instances when called on a subclass
@@ 36220 @@
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/time/at_spec.rb
Time.at
-- converts to time object (FAILED - <n>)
- creates a new time object with the value given by time
- creates a dup time object with the value given by time
- is able to create a time object with a float
@@ 46096 @@
UNIXSocket#recv_io
- reads an IO object across the socket
- takes an optional class to use
-- takes an optional mode to use (ERROR - <n>)
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/library/socket/unixsocket/recvfrom_spec.rb
UNIXSocket#recvfrom
@@ 48793 @@
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/array/pack/g_spec.rb:17:in `<top (required)>'
<n>)
-Exception#== returns true if the two exceptions inherit from Exception but have different classes FAILED
-Expected #<RuntimeError: message>
- to equal #<TypeError: message>
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/exception/equal_value_spec.rb:39:in `block (3 levels) in <top (required)>'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/exception/equal_value_spec.rb:5:in `block in <top (required)>'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/exception/equal_value_spec.rb:4:in `<top (required)>'
<n>)
-Exception#exception returns an exception of the same class as self with the message given as argument FAILED
-Expected "message"
- to equal :message
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/exception/exception_spec.rb:68:in `block (2 levels) in <top (required)>'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/exception/exception_spec.rb:53:in `<top (required)>'
<n>)
-Exception#exception returns an exception of the same class as self with the message given as argument, but without reinitializing FAILED
-Expected "message"
- to equal :message
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/exception/exception_spec.rb:83:in `block (2 levels) in <top (required)>'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/exception/exception_spec.rb:53:in `<top (required)>'
<n>)
Fiber#resume executes the ensure clause FAILED
@@ 48828 @@
<n>)
File::Stat#inspect produces a nicely formatted description of a File::Stat object FAILED
-Expected "#<File::Stat dev=0x0, ino=5636494, mode=0100644, nlink=1, uid=110, gid=101, rdev=0x0, size=8, blksize=4096, blocks=8, atime=2011-02-07 04:19:06 +0900, mtime=2011-02-07 04:19:06 +0900, ctime=2011-02-07 04:19:06 +0900>"
-to equal "#<File::Stat dev=0x803, ino=5636494, mode=0100644, nlink=1, uid=110, gid=101, rdev=0x0, size=8, blksize=4096, blocks=8, atime=2011-02-07 04:19:06 +0900, mtime=2011-02-07 04:19:06 +0900, ctime=2011-02-07 04:19:06 +0900>"
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/file/stat/inspect_spec.rb:17:in `block (2 levels) in <top (required)>'
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/file/stat/inspect_spec.rb:3:in `<top (required)>'
<n>)
-String#tr treats a descending range in the replacement as containing just the start character ERROR
-ArgumentError: invalid range "z-b" in string transliteration
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/string/tr_spec.rb:25:in `tr'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/string/tr_spec.rb:25:in `block (2 levels) in <top (required)>'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/string/tr_spec.rb:5:in `<top (required)>'
<n>)
-String#tr treats a descending range in the source as empty ERROR
-ArgumentError: invalid range "l-a" in string transliteration
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/string/tr_spec.rb:29:in `tr'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/string/tr_spec.rb:29:in `block (2 levels) in <top (required)>'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/string/tr_spec.rb:5:in `<top (required)>'
<n>)
String#unpack with format 'Q' adds nil for each element requested beyond the end of the String FAILED
@@ 48865 @@
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/string/unpack/q_spec.rb:30:in `<top (required)>'
<n>)
-Time.at converts to time object FAILED
-Expected "2007-07-10 00:38:44 +0000"
- to equal "Tue Jul 10 00:38:44 +0000 2007"
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/time/at_spec.rb:10:in `block (4 levels) in <top (required)>'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/time/fixtures/methods.rb:17:in `with_timezone'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/time/at_spec.rb:7:in `block (3 levels) in <top (required)>'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/core/time/at_spec.rb:4:in `<top (required)>'
<n>)
BigDecimal.new doesn't segfault when using a very large string to build the number FAILED
@@ 48907 @@
/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/library/rexml/document/encoding_spec.rb:4:in `<top (required)>'
<n>)
-UNIXSocket#recv_io takes an optional mode to use ERROR
-NoMethodError: undefined method `mode' for #<File:fd n>
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/library/socket/unixsocket/recv_io_spec.rb:48:in `block (3 levels) in <top (required)>'
-/var/lib/chkbuild/tmp/build/ruby-trunk-o3/<buildtime>/rubyspec/library/socket/unixsocket/recv_io_spec.rb:4:in `<top (required)>'
<n>)
Syslog::Constants Syslog::Constants.LOG_MASK works on undefined constants FAILED
@@ 48938 @@
Finished in <t> seconds
-3330 files, 17075 examples, <num> expectations, 23 failures, 3 errors
exit 1
failed(rubyspec)
== dist # <time>
OlderDiff < 20110206T183303Z < ThisDiff > 20110207T183303Z > NewerDiff