COMMIT Added :launch flags for mspec to launch the target. http://github.com/rubyspec/mspec/commit/4c65ecbe81062f2ab01c26184745819bc0ab57c6 COMMIT Fixed Array#cycle specs. http://github.com/rubyspec/rubyspec/commit/f9f677416c68a7b04e1c8ea6ffceffe1413bf948 COMMIT Fixed Array() specs. http://github.com/rubyspec/rubyspec/commit/2636963d136d724192b6f5073e778e960910affc COMMIT Fixed whitespace in Numeric#step specs. http://github.com/rubyspec/rubyspec/commit/b5fb412137b11df4945e93c8e13d2fc134b43585 COMMIT Fixed Numeric#step specs. http://github.com/rubyspec/rubyspec/commit/9cdefce68edf9995322ddbfbce9dd2aa1f1780cb COMMIT Move specs of Object#instance_exec http://github.com/rubyspec/rubyspec/commit/c6687e80e28be5213e560320eb84b42e10c6b8e5 COMMIT Cleanup whitespace http://github.com/rubyspec/rubyspec/commit/1a889353b4d59ff3c52616b333336c8770c055c7 COMMIT More RUBYOPT specs and cleanup. http://github.com/rubyspec/rubyspec/commit/aceab7aba2336e730fa6e8c9fc774bc74b31a82c COMMIT Clean up some C-API IO specs. http://github.com/rubyspec/rubyspec/commit/7082dd42864389d5b84c1a6935e2e2c3bee478f7 COMMIT More rb_ary_delete_at specs. http://github.com/rubyspec/rubyspec/commit/4ab12fc473471bfc82d84a1f0fa84f3947b2854f COMMIT Add spec for custom seperator with ** http://github.com/rubyspec/rubyspec/commit/c56ac8061ec7b3901352cc7a5cf0ea6d13f35318 COMMIT More better RARRAY specs. http://github.com/rubyspec/rubyspec/commit/af12a69ea531fed0c4d854072c9068aa5f2926c8 COMMIT Better RSTRING spec. http://github.com/rubyspec/rubyspec/commit/ffc05cd5e7e2304203ad3ab42983075b322e1acb COMMIT Rewrote rb_scan_args specs. http://github.com/rubyspec/rubyspec/commit/69255c46b1f1a38d34a4f2bd258efe5aaccd5783 =================================================================== +++ 20110116T013114Z @@ 4732 @@ test_eql(OpenSSL::TestDigest): . test_info(OpenSSL::TestDigest): . test_reset(OpenSSL::TestDigest): . +test_eof_0(OpenSSL::TestEOF1): ./test/openssl/test_pair.rb:: warning: using default DH parameters. /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//ruby/.ext/common/openssl/ssl.rb:: warning: using default DH parameters. /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//ruby/.ext/common/openssl/ssl.rb:: warning: using default DH parameters. ./test/openssl/test_pair.rb:: warning: using default DH parameters. @@ 4837 @@ . test_padding(OpenSSL::TestPKeyRSA): . test_private(OpenSSL::TestPKeyRSA): . +test_getc(OpenSSL::TestPair): ./test/openssl/test_pair.rb:: warning: using default DH parameters. /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//ruby/.ext/common/openssl/ssl.rb:: warning: using default DH parameters. . +test_puts_empty(OpenSSL::TestPair): /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//ruby/.ext/common/openssl/ssl.rb:: warning: using default DH parameters. ./test/openssl/test_pair.rb:: warning: using default DH parameters. . +test_puts_meta(OpenSSL::TestPair): ./test/openssl/test_pair.rb:: warning: using default DH parameters. /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//ruby/.ext/common/openssl/ssl.rb:: warning: using default DH parameters. . test_readall(OpenSSL::TestPair): /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//ruby/.ext/common/openssl/ssl.rb:: warning: using default DH parameters. @@ 13961 @@ - raises IOError on closed stream /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//rubyspec/core/kernel/Array_spec.rb +Kernel +- has private instance method Array() Kernel.Array - does not call #to_ary on an Array - calls #to_ary to convert the argument to an Array - does not call #to_a on an Array +- calls #to_a if the argument does not respond to #to_ary +- calls #to_a if #to_ary returns nil +- raises a TypeError if #to_a returns nil +- returns an Array containing the argument if it responds to neither #to_ary nor #to_a +- returns an empty Array when passed nil +- raises a TypeError if #to_ary does not return an Array +- raises a TypeError if #to_a does not return an Array Kernel#Array - does not call #to_ary on an Array - calls #to_ary to convert the argument to an Array - does not call #to_a on an Array +- calls #to_a if the argument does not respond to #to_ary +- calls #to_a if #to_ary returns nil +- raises a TypeError if #to_a returns nil +- returns an Array containing the argument if it responds to neither #to_ary nor #to_a +- returns an empty Array when passed nil +- raises a TypeError if #to_ary does not return an Array +- raises a TypeError if #to_a does not return an Array /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//rubyspec/core/kernel/Complex_spec.rb /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//rubyspec/core/kernel/Float_spec.rb @@ 16864 @@ /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//rubyspec/core/numeric/step_spec.rb Numeric#step - raises an ArgumentError when step is 0 +- raises an ArgumentError when step is 0.0 - defaults to step = 1 +- does not rescue ArgumentError exceptions +- does not rescue TypeError exceptions Numeric#step with [stop, step] +- does not raise a LocalJumpError when not passed a block and self > stop +- raises a LocalJumpError when not passed a block and self < stop +- increments self using #+ until self > stop when step > 0 +- decrements self using #+ until self < stop when step < 0 +Numeric#step Numeric#step with [stop, step] when self, stop and step are Fixnums - yields only Fixnums +Numeric#step Numeric#step with [stop, +step] when self, stop and step are Fixnums - yields while increasing self by step until stop is reached - yields once when self equals stop - does not yield when self is greater than stop +Numeric#step Numeric#step with [stop, -step] when self, stop and step are Fixnums - yields while decreasing self by step until stop is reached - yields once when self equals stop - does not yield when self is less than stop +Numeric#step Numeric#step with [stop, step] +- yields only Floats when self is a Float +- yields only Floats when stop is a Float +- yields only Floats when step is a Float +Numeric#step Numeric#step with [stop, +step] when self, stop or step is a Float +- yields while increasing self by step while stop < stop - yields once when self equals stop - does not yield when self is greater than stop +Numeric#step Numeric#step with [stop, -step] when self, stop or step is a Float +- yields while decreasing self by step while self > stop - yields once when self equals stop - does not yield when self is less than stop @@ 16944 @@ - does not preserve frozen state from the original /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//rubyspec/core/object/initialize_spec.rb +/Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//rubyspec/core/object/instance_exec_spec.rb /Users/chkbuild/chkbuild/tmp/build/ruby-1.8.6//rubyspec/core/object/instance_of_spec.rb Object#instance_of? - returns true if given class is object's class @@ 22200 @@ - includes TOPLEVEL_BINDING Processing RUBYOPT +- adds the -I path to $LOAD_PATH +- sets $DEBUG to true for '-d' +- sets $VERBOSE to true for '-w' +- sets $VERBOSE to true for '-W' +- sets $VERBOSE to nil for '-W0' +- sets $VERBOSE to false for '-W1' +- sets $VERBOSE to true for '-W2' +- requires the file for '-r' +- sets $KCODE to 'NONE' with '-K' +- sets $KCODE to 'NONE' with '-Ka' +- sets $KCODE to 'NONE' with '-KA' +- sets $KCODE to 'NONE' with '-Kn' +- sets $KCODE to 'NONE' with '-KN' +- sets $KCODE to 'EUC' with '-Ke' +- sets $KCODE to 'EUC' with '-KE' +- sets $KCODE to 'UTF8' with '-Ku' +- sets $KCODE to 'UTF8' with '-KU' +- sets $KCODE to 'SJIS' with '-Ks' +- sets $KCODE to 'SJIS' with '-KS' - raises a RuntimeError for '-a' - raises a RuntimeErrorError for '-p' - raises a RuntimeErrorError for '-n' @@ 30623 @@ - raises Errno::ENOTCONN on getstimeout: output interval exceeds 600.0 seconds. timeout: the process group is alive. timeout: INT signal sent. +|Operation not permitted (Errno::EPERM) +| /Users/chkbuild/chkbuild/timeoutcom.rb:62:in `kill' +| /Users/chkbuild/chkbuild/timeoutcom.rb:62:in `kill_processgroup' +| /Users/chkbuild/chkbuild/timeoutcom.rb:61:in `each' +| /Users/chkbuild/chkbuild/timeoutcom.rb:61:in `kill_processgroup' +| /Users/chkbuild/chkbuild/timeoutcom.rb:161:in `timeout_command' | /Users/chkbuild/chkbuild/timeoutcom.rb:116:in `popen' | /Users/chkbuild/chkbuild/timeoutcom.rb:116:in `timeout_command' | /Users/chkbuild/chkbuild/chkbuild/build.rb:1259:in `run' @@ 30660 @@ | /Users/chkbuild/chkbuild/sample/build-ruby:62 | /Users/chkbuild/chkbuild/start-build:39:in `load' | /Users/chkbuild/chkbuild/start-build:39 +failed(rubyspec Errno::EPERM) == rubyspec/command_line/dash_a_spec.rb #