COMMIT Accept false or nil as parameters for shared specs http://github.com/rubyspec/mspec/commit/0e1b0940686936beb176d9f4d25d731959b5aa23 COMMIT lib/delegate: Basic specs for some of the Kernel instance method that are delegated or not http://github.com/rubyspec/rubyspec/commit/a4a5824d640a4c1935f2f3d3f800f3ebe6279548 COMMIT Fix 3 File.expand_path failures on Windows. http://github.com/rubyspec/rubyspec/commit/9bcdc16b9ebd8a3289652affff59576982811f09 COMMIT lib/complex/math/atanh: Fix specs. http://github.com/rubyspec/rubyspec/commit/c1652747bb66663168d244e4d2295e6577e6dae7 COMMIT Fixed require lines in rubyspec copy. http://github.com/rubyspec/rubyspec/commit/dbf51741890af145e869b3c6bcbdd4d8fe8e13ae COMMIT Use correct module namespacing in Numeric specs. http://github.com/rubyspec/rubyspec/commit/e06f502ab4eb7c3424b2b024048e64f52dbe9719 COMMIT More specs for Numeric#<=>. http://github.com/rubyspec/rubyspec/commit/03aac8726542b9efabcfdfd5eeda72c7f0a55812 COMMIT Added spec for File.expand_path not modifying its argument. http://github.com/rubyspec/rubyspec/commit/344bf5281a69f8e6b2125cc3c55dc972bfaf210a COMMIT Alias needs to hang on to the included module, not the module. http://github.com/rubyspec/rubyspec/commit/0128753a9297596097eb15129d0ff5ebc8b100cd COMMIT Spec for alias+super interaction with included modules http://github.com/rubyspec/rubyspec/commit/da646cee2b889665a47e13108657530c402a495b COMMIT Spec that some Module methods search Object too. http://github.com/rubyspec/rubyspec/commit/7990b0c98020588308de6dcce3ef893d233af2c2 COMMIT Spec that method_defined? doesn't search Object/Kernel. http://github.com/rubyspec/rubyspec/commit/9291b2ce0321420d2ccd158fb0d35c6c9e411368 =================================================================== +++ 20100613T081531 @@ 4984 @@ . test_sslctx_set_params(OpenSSL::TestSSL): /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//ruby/.ext/common/openssl/ssl-internal.rb:: warning: using default DH parameters. . +test_starttls(OpenSSL::TestSSL): /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//ruby/.ext/common/openssl/buffering.rb:: warning: SSL session is not started yet. /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//ruby/.ext/common/openssl/buffering.rb:: warning: SSL session is not started yet. /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//ruby/.ext/common/openssl/buffering.rb:: warning: SSL session is not started yet. /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//ruby/.ext/common/openssl/buffering.rb:: warning: SSL session is not started yet. @@ 6309 @@ test_union2(TestRegexp): . test_yoshidam_net_20041111_1(TestRegexp): . test_home_path(TestRequire): . +test_event(TestSetTraceFunc): F test_child_vtalrm(TestSignal): . test_exit_action(TestSignal): . test_signal(TestSignal): . @@ 7391 @@ Finished in seconds. + ) Failure: +test_event(TestSetTraceFunc) [./test/ruby/test_settracefunc.rb:90]: +<["c-call", 32, :initialize, Exception]> expected but was +<["line", 86, :marshal_load, TestMarshal::LoadTest]>. ) Error: test_filehandler(WEBrick::TestFileHandler): @@ 7412 @@ ./test/webrick/utils.rb:46:in `start_httpserver' ./test/webrick/test_filehandler.rb:79:in `test_filehandler' +2252 tests, 1347710 assertions, 1 failures, 1 errors make: *** [test-all] Error 1 exit 2 failed(test-all) @@ 11149 @@ - raises an ArgumentError if not passed one or two arguments - raises a TypeError if not passed a String type - expands /./dir to /dir +- does not modify the string argument +- does not modify a HOME string argument +- returns a String when passed a String subclass /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/file/extname_spec.rb File.extname @@ 15893 @@ - is a private method - works in module - works on private module methods in a module that has been reopened +- accesses a method defined on Object from Kernel /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/module/allocate_spec.rb Module.allocate @@ 16262 @@ /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/module/method_defined_spec.rb Module#method_defined? - returns true if a public or private method with the given name is defined in self, self's ancestors or one of self's included modules +- does not search Object or Kernel when called on a module - raises a TypeError when the given object is not a string/symbol/fixnum - converts the given name to a string using to_str @@ 16362 @@ /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/module/private_spec.rb Module#private - makes the target method uncallable from other types +- makes a public Object instance method private in a new module +- makes a public Object instance method private in Kernel /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/module/protected_instance_methods_spec.rb Module#protected_instance_methods @@ 16384 @@ /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/module/protected_spec.rb Module#protected - makes an existing class method protected +- makes a public Object instance method protected in a new module +- makes a public Object instance method protected in Kernel /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/module/public_class_method_spec.rb Module#public_class_method @@ 16417 @@ /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/module/public_spec.rb Module#public - on a superclass method calls the redefined method +- makes a private Object instance method public in a new module +- makes a private Object instance method public in Kernel /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/module/remove_class_variable_spec.rb Module#remove_class_variable @@ 16542 @@ - returns 0 if self equals other - returns nil if self does not equal other +Numeric#<=> with subclasses of Numeric +- is called when instances are compared with #< +- is called when instances are compared with #<= +- is called when instances are compared with #> +- is called when instances are compared with #>= /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/numeric/conj_spec.rb /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/numeric/conjugate_spec.rb @@ 18942 @@ String#unpack with 'C' and 'c' directives - returns an array by decoding self according to the format string +- decodes respective of the already decoded data String#unpack with 'Q' and 'q' directives - returns an array in big-endian (native format) order by decoding self according to the format string @@ 21418 @@ - can be used with implicit arguments from a method defined with define_method - calls method_missing when a superclass method is not found - respects the original module a method is aliased from +- sees the included version of a module a method is alias from /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/language/symbol_spec.rb A Symbol literal @@ 24285 @@ - includes public instance methods of the DelegateClass class - does not include private methods +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/case_compare_spec.rb +Delegator#=== +- is delegated +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/compare_spec.rb +Delegator#<=> +- is delegated +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/complement_spec.rb +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/eql_spec.rb +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/equal_spec.rb +Delegator#equal? +- returns true only when compared with the delegator +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/equal_value_spec.rb +Delegator#== +- is delegated when passed self +- is delegated when passed the delegated object +- is delegated in general /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/frozen_spec.rb Delegator when frozen @@ 24313 @@ - causes mutative calls to raise TypeError - returns false if only the delegated object is frozen +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/hash_spec.rb /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/marshal_spec.rb SimpleDelegator - can be marshalled @@ 24336 @@ - includes instance methods of the Delegator class - does not include private methods +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/not_equal_spec.rb +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/not_spec.rb /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/private_methods_spec.rb Delegator#private_methods - does not include any method of the delegate object @@ 24358 @@ - forwards protected method calls - doesn't forward private method calls +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/delegate/delegator/tap_spec.rb /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/digest/hexencode_spec.rb Digest.hexencode - returns '' when passed an empty String @@ 32533 @@ /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//mspec/lib/mspec/expectations/expectations.rb:15:in `fail_with' /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//mspec/lib/mspec/matchers/base.rb:8:in `==' +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/string/unpack_spec.rb:157 /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//mspec/lib/mspec/runner/mspec.rb:68:in `instance_eval' /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//mspec/lib/mspec/runner/mspec.rb:68:in `protect' /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//mspec/lib/mspec/runner/context.rb:179:in `protect' @@ 32546 @@ /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//mspec/lib/mspec/runner/context.rb:199:in `process' /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//mspec/lib/mspec/runner/mspec.rb:37:in `describe' /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//mspec/lib/mspec/runner/object.rb:11:in `describe' +/var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/core/string/unpack_spec.rb:109 /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//mspec/lib/mspec/runner/mspec.rb:56:in `load' /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//mspec/lib/mspec/runner/mspec.rb:56:in `files' /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//mspec/lib/mspec/runner/mspec.rb:68:in `instance_eval' @@ 32635 @@ ) ConditionVariable#broadcast releases all threads waiting in line for this resource ERROR +ThreadError: Thread#join: deadlock 0xf7fc7ee0 - mutual join(0xf3eec980) /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/conditionvariable/broadcast_spec.rb:55:in `join' /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/conditionvariable/broadcast_spec.rb:55 /var/lib/chkbuild/tmp/build/ruby-1.8.7-pth//rubyspec/library/conditionvariable/broadcast_spec.rb:55:in `each' @@ 33559 @@ Finished in seconds +3205 files, 13038 examples, expectations, 28 failures, 33 errors exit 1 failed(rubyspec) == end #