COMMIT ARGF.close: Remove duplicated test. http://github.com/rubyspec/rubyspec/commit/347052b74dc9f161c3a30fec82d986a31b0dde57 COMMIT Kernel#instance_variable_set: Update for 1.9 difference http://github.com/rubyspec/rubyspec/commit/887c99880026c71c458b62d7c5acfa734aadf11e COMMIT IO#eof?: Update test for 1.9's change in #getc. http://github.com/rubyspec/rubyspec/commit/f8e7455250ebf1da15fe3b59c286626a3cd6e458 COMMIT Bignum#<=>: Fix incorrect expectation re: Infinity http://github.com/rubyspec/rubyspec/commit/446b98e74fb7e5f3196ea3a231fbec217eb8ad1a COMMIT Numeric#real: Fixed typos; now passes on 1.9 http://github.com/rubyspec/rubyspec/commit/119c09f94803966fc52eded5c491de600f14f300 COMMIT Numeric#rect: Fix test for NaN equality. http://github.com/rubyspec/rubyspec/commit/c45c24e40cfdcd3e3b9d468f14f1d3dc65fa9e28 --- 20090627T080429 +++ 20090628T080450 @@ -1,9093 +1,9093 @@ IMAPTest#test_imaps_with_ca_file: s: . IMAPTest#test_starttls: s: . IMAPTest#test_unexpected_eof: s: . -MinitestSpec#test_needs_to_verify_inequality: s: . -MinitestSpec#test_needs_to_be_able_to_catch_a_minitest_assertion_exception: s: . +MinitestSpec#test_needs_to_verify_kinds_of_objects: s: . MinitestSpec#test_needs_to_verify_throw: s: . -MinitestSpec#test_needs_to_verify_using_respond_to: s: . -MinitestSpec#test_needs_to_verify_using_any_operator: s: . -MinitestSpec#test_needs_to_verify_types_of_objects: s: . -MinitestSpec#test_needs_to_verify_identity: s: . -MinitestSpec#test_needs_to_verify_regexp_matches: s: . -MinitestSpec#test_needs_to_verify_floats_within_a_delta: s: . -MinitestSpec#test_needs_to_have_all_methods_named_well: s: . MinitestSpec#test_needs_to_verify_nil: s: . -MinitestSpec#test_needs_to_verify_kinds_of_objects: s: . -MinitestSpec#test_needs_to_catch_an_unexpected_exception: s: . MinitestSpec#test_needs_to_catch_an_expected_exception: s: . -MinitestSpec#test_needs_to_verify_mismatch: s: . -MinitestSpec#test_needs_to_verify_non_identity: s: . -MinitestSpec#test_needs_to_verify_equality: s: . MinitestSpec#test_needs_to_verify_non_nil: s: . +MinitestSpec#test_needs_to_have_all_methods_named_well: s: . +MinitestSpec#test_needs_to_verify_identity: s: . +MinitestSpec#test_needs_to_verify_equality: s: . +MinitestSpec#test_needs_to_verify_inequality: s: . +MinitestSpec#test_needs_to_verify_regexp_matches: s: . +MinitestSpec#test_needs_to_verify_non_identity: s: . +MinitestSpec#test_needs_to_catch_an_unexpected_exception: s: . MinitestSpec#test_needs_raise_if_an_expected_exception_is_not_raised: s: . +MinitestSpec#test_needs_to_verify_using_any_operator: s: . +MinitestSpec#test_needs_to_verify_using_respond_to: s: . +MinitestSpec#test_needs_to_be_able_to_catch_a_minitest_assertion_exception: s: . +MinitestSpec#test_needs_to_verify_types_of_objects: s: . +MinitestSpec#test_needs_to_verify_mismatch: s: . +MinitestSpec#test_needs_to_verify_floats_within_a_delta: s: . NonString#test_6: s: . NonString#test_7: s: . OpenSSL::TestASN1#test_decode: s: . @@ -14341,7 +14341,7 @@ TestThread#test_join: s: . TestThread#test_join2: s: . TestThread#test_kill_main_thread: s: . -TestThread#test_list: s: . +TestThread#test_list: s: F TestThread#test_local_barrier: s: . TestThread#test_main: s: . TestThread#test_mutex_deadlock: s: . @@ -14873,7 +14873,11 @@ <"-"> expected but was . -5868 tests, 2839357 assertions, 3 failures, 7 errors, 0 skips + ) Failure: +test_list(TestThread) [/home/chkbuild/tmp/build/ruby-1.9.1//ruby/test/ruby/test_thread.rb:226]: +timeout + +5868 tests, 2839356 assertions, 4 failures, 7 errors, 0 skips make: *** [test-all] エラー 1 exit 2 failed(test-all) @@ -15995,6 +15999,7 @@ ARGF.close - closes the current open stream - returns self +- raises an IOError if called on a closed stream - can close STDIN /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/argf/closed_spec.rb @@ -17693,11 +17698,11 @@ - returns 1 when self is greater than the given argument - returns nil when the given argument is not an Integer - returns 1 when self is Infinity and other is a Bignum -- returns 1 when self is negative and other is Infinty (FAILED - ) +- returns -1 when self is negative and other is Infinty +- returns -1 when self is -Infinity and other is negative - returns -1 when self is -Infinity and other is negative -- returns -1 when self is negative and other is -Infinity - returns 1 when self is Infinity and other is a Bignum -- returns 1 when self is negative and other is Infinty (FAILED - ) +- returns -1 when self is negative and other is Infinty - returns -1 when self is -Infinity and other is negative - returns -1 when self is negative and other is -Infinity @@ -22455,6 +22460,7 @@ - sets the value of the specified instance variable - sets the value of the instance variable when no instance variables exist yet - raises a NameError exception if the argument is not of form '@x' +- raises a TypeError if the instance variable name is a Fixnum - raises a TypeError if the instance variable name is an object that does not respond to to_str - raises a NameError if the passed object, when coerced with to_str, does not start with @ - raises a NameError if pass an object that cannot be a symbol @@ -24132,14 +24138,14 @@ /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/numeric/quo_spec.rb /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/numeric/real_spec.rb Numeric#real -- returns self (ERROR - ) -- raises an ArgumentError if given any arguments (FAILED - ) +- returns self +- raises an ArgumentError if given any arguments /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/numeric/rect_spec.rb Numeric#rect - returns an Array - returns a two-element Array -- returns self as the first element (FAILED - ) +- returns self as the first element - returns 0 as the last element - raises an ArgumentError if given any arguments @@ -24147,7 +24153,7 @@ Numeric#rectangular - returns an Array - returns a two-element Array -- returns self as the first element (FAILED - ) +- returns self as the first element - returns 0 as the last element - raises an ArgumentError if given any arguments