COMMIT Added tests for MagLev into MSpec tests http://github.com/rubyspec/mspec/commit/e8129536bba5624579112283197a5138134be28b COMMIT Added MagLev to MSpec http://github.com/rubyspec/mspec/commit/1b997e44d64a39bbd63308431ede0849f1e6a4d8 COMMIT String#ord: Specify 1.8.8+ method. http://github.com/rubyspec/rubyspec/commit/32df23da99278df54fa66428500d961dad88f862 COMMIT String#to_c: Specify 1.9 method http://github.com/rubyspec/rubyspec/commit/e4d9d1cad58eb7dfe2f04e71233d065c26820690 --- 20090623T075541 +++ 20090624T080548 @@ -1,9093 +1,9093 @@ IMAPTest#test_imaps_with_ca_file: s: . IMAPTest#test_starttls: s: . IMAPTest#test_unexpected_eof: s: . +MinitestSpec#test_needs_to_have_all_methods_named_well: s: . +MinitestSpec#test_needs_to_verify_inequality: s: . MinitestSpec#test_needs_to_verify_non_nil: s: . -MinitestSpec#test_needs_to_verify_types_of_objects: s: . -MinitestSpec#test_needs_to_verify_kinds_of_objects: s: . MinitestSpec#test_needs_to_verify_non_identity: s: . MinitestSpec#test_needs_raise_if_an_expected_exception_is_not_raised: s: . -MinitestSpec#test_needs_to_verify_identity: s: . -MinitestSpec#test_needs_to_verify_throw: s: . -MinitestSpec#test_needs_to_verify_using_respond_to: s: . +MinitestSpec#test_needs_to_verify_floats_within_a_delta: s: . MinitestSpec#test_needs_to_verify_nil: s: . -MinitestSpec#test_needs_to_catch_an_unexpected_exception: s: . MinitestSpec#test_needs_to_catch_an_expected_exception: s: . -MinitestSpec#test_needs_to_have_all_methods_named_well: s: . -MinitestSpec#test_needs_to_verify_inequality: s: . -MinitestSpec#test_needs_to_verify_mismatch: s: . MinitestSpec#test_needs_to_verify_using_any_operator: s: . -MinitestSpec#test_needs_to_verify_floats_within_a_delta: s: . -MinitestSpec#test_needs_to_verify_regexp_matches: s: . MinitestSpec#test_needs_to_verify_equality: s: . +MinitestSpec#test_needs_to_verify_identity: s: . +MinitestSpec#test_needs_to_verify_mismatch: s: . MinitestSpec#test_needs_to_be_able_to_catch_a_minitest_assertion_exception: s: . +MinitestSpec#test_needs_to_verify_using_respond_to: s: . +MinitestSpec#test_needs_to_verify_kinds_of_objects: s: . +MinitestSpec#test_needs_to_catch_an_unexpected_exception: s: . +MinitestSpec#test_needs_to_verify_types_of_objects: s: . +MinitestSpec#test_needs_to_verify_throw: s: . +MinitestSpec#test_needs_to_verify_regexp_matches: 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: . @@ -14351,7 +14351,7 @@ TestThread#test_mutex_synchronize: s: . TestThread#test_mutex_trylock: s: . TestThread#test_new: s: . -TestThread#test_priority: s: . +TestThread#test_priority: s: F TestThread#test_recursive_error: s: . TestThread#test_safe_level: s: . TestThread#test_select_wait: s: . @@ -14873,7 +14873,15 @@ <"-"> 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 + + ) Failure: +test_priority(TestThread) [/home/chkbuild/tmp/build/ruby-1.9.1//ruby/test/ruby/test_thread.rb:129]: +[ruby-dev:33124] + +5868 tests, 2839356 assertions, 5 failures, 7 errors, 0 skips make: *** [test-all] エラー 1 exit 2 failed(test-all) @@ -25726,6 +25734,15 @@ - takes an optional sign - returns 0 on error +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/string/ord_spec.rb +String#ord +- returns a Fixnum +- returns the codepoint of the first character in the String +- ignores subsequent characters +- understands multibyte characters +- is equivalent to #codepoints.first +- raises an ArgumentError if called on an empty String + /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/string/partition_spec.rb String#partition with String - returns an array of substrings based on splitting on the given string @@ -26096,6 +26113,33 @@ - raises a RuntimeError when self is frozen /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/string/to_a_spec.rb +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/string/to_c_spec.rb +String#to_c +- returns a Complex object +- understands integers +- understands negative integers +- understands fractions (numerator/denominator) for the real part +- understands fractions (numerator/denominator) for the imaginary part +- understands negative fractions (-numerator/denominator) for the real part +- understands negative fractions (-numerator/denominator) for the imaginary part +- understands floats (a.b) for the real part +- understands floats (a.b) for the imaginary part +- understands negative floats (-a.b) for the real part +- understands negative floats (-a.b) for the imaginary part +- understands an integer followed by 'i' to mean that integer is the imaginary part +- understands a negative integer followed by 'i' to mean that negative integer is the imaginary part +- understands an 'i' by itself as denoting a complex number with an imaginary part of 1 +- understands a '-i' by itself as denoting a complex number with an imaginary part of -1 +- understands 'a+bi' to mean a complex number with 'a' as the real part, 'b' as the imaginary +- understands 'a-bi' to mean a complex number with 'a' as the real part, '-b' as the imaginary +- understands scientific notation for the real part +- understands negative scientific notation for the real part +- understands scientific notation for the imaginary part +- understands negative scientific notation for the imaginary part +- understands scientific notation for the real and imaginary part in the same String +- understands negative scientific notation for the real and imaginary part in the same String +- returns a complex number with 0 as the real part, 0 as the imaginary part for unrecognised Strings + /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/string/to_f_spec.rb String#to_f - treats leading characters of self as a floating point number