[macruby-changes] [2715] MacRuby/trunk/spec/frozen/tags/macruby

source_changes at macosforge.org source_changes at macosforge.org
Sun Oct 4 14:46:48 PDT 2009


Revision: 2715
          http://trac.macosforge.org/projects/ruby/changeset/2715
Author:   eloy.de.enige at gmail.com
Date:     2009-10-04 14:46:47 -0700 (Sun, 04 Oct 2009)
Log Message:
-----------
Tagged failing examples.

Modified Paths:
--------------
    MacRuby/trunk/spec/frozen/tags/macruby/core/array/pack_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/kernel/Integer_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/method/eql_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/method/equal_value_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/module/define_method_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/string/encode_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/language/regexp/character_classes_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/language/regexp/encoding_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/library/cgi/cookie/value_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/rank_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/library/socket/basicsocket/close_read_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/library/socket/basicsocket/close_write_tags.txt

Added Paths:
-----------
    MacRuby/trunk/spec/frozen/tags/macruby/core/enumerable/chunk_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/enumerator/each_with_object_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/enumerator/with_object_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/io/binmode_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/io/readline_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/kernel/respond_to_missing_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/matchdata/eql_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/matchdata/equal_value_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/method/name_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/time/gm_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/time/local_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/time/mktime_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/time/strftime_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/time/utc_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/core/unboundmethod/name_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/language/hash_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/library/mathn/bignum/
    MacRuby/trunk/spec/frozen/tags/macruby/library/mathn/bignum/exponent_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/det_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/determinant_tags.txt
    MacRuby/trunk/spec/frozen/tags/macruby/library/socket/socket/getnameinfo_tags.txt

Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/array/pack_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/array/pack_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/array/pack_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -10,4 +10,7 @@
 critical:Array#pack with format 'M' does not check whether the pack argument responds to #to_s before call #to_s
 fails:Array#pack with format 'U' returns a UTF-8 string
 fails:Array#pack with format 'm' ignores star parameter
-fails:Array#pack just ignores unknown format
\ No newline at end of file
+fails:Array#pack just ignores unknown format
+fails:Array#pack with format 'n' does not raise a RangeError even when a pack argument is >= 2**64
+fails:Array#pack just ignores unknown format
+fails:Array#pack with format 'n' does not raise a RangeError even when a pack argument is >= 2**64

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/enumerable/chunk_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/enumerable/chunk_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/enumerable/chunk_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1,6 @@
+fails:Enumerable#chunk raises an ArgumentError if called without a block
+fails:Enumerable#chunk returns an Enumerator if given a block
+fails:Enumerable#chunk yields each element of the Enumerable to the block
+fails:Enumerable#chunk returns an Enumerator of 2-element Arrays
+fails:Enumerable#chunk sets the first element of each sub-Array to the return value of the block
+fails:Enumerable#chunk sets the last element of each sub-Array to the consecutive values for which the block returned the first element

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/enumerator/each_with_object_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/enumerator/each_with_object_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/enumerator/each_with_object_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1,3 @@
+fails:Enumerator#each_with_object returns an enumerator when not given a block
+fails:Enumerator#each_with_object returns the given object when given a block
+fails:Enumerator#each_with_object iterates over the array adding the given object

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/enumerator/with_object_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/enumerator/with_object_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/enumerator/with_object_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1,3 @@
+fails:Enumerator#with_object returns an enumerator when not given a block
+fails:Enumerator#with_object returns the given object when given a block
+fails:Enumerator#with_object iterates over the array adding the given object

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/io/binmode_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/io/binmode_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/io/binmode_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:IO#binmode raises an IOError on closed stream

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/io/readline_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/io/readline_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/io/readline_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:IO#readline assigns the returned line to $_

Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/kernel/Integer_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/kernel/Integer_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/kernel/Integer_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -8,3 +8,69 @@
 critical:Kernel#Integer raises an ArgumentError if the number cannot be parsed as decimal
 fails:Kernel.Integer raises an ArgumentError if the String ends with a null byte
 fails:Kernel#Integer raises an ArgumentError if the String ends with a null byte
+fails:Kernel.Integer ignores leading whitespace
+fails:Kernel.Integer ignores trailing whitespace
+fails:Kernel.Integer ignores an embedded _
+fails:Kernel.Integer ignores a single leading +
+fails:Kernel.Integer makes the number negative if there's a leading -
+fails:Kernel.Integer accepts wholly lowercase alphabetic strings for bases > 10
+fails:Kernel.Integer accepts wholly uppercase alphabetic strings for bases > 10
+fails:Kernel.Integer accepts mixed-case alphabetic strings for bases > 10
+fails:Kernel.Integer accepts alphanumeric strings for bases > 10
+fails:Kernel.Integer parses the value as a hex number if there's a leading 0x and a base of 16
+fails:Kernel.Integer is a positive hex number if there's a leading +0x and base of 16
+fails:Kernel.Integer is a negative hex number if there's a leading -0x and a base of 16
+fails:Kernel.Integer parses the value as a hex number if there's a leading 0X and a base of 16
+fails:Kernel.Integer is a positive hex number if there's a leading +0X and base of 16
+fails:Kernel.Integer is a negative hex number if there's a leading -0X and a base of 16
+fails:Kernel.Integer parses the value as a binary number if there's a leading 0b and the base is 2
+fails:Kernel.Integer is a positive binary number if there's a leading +0b and a base of 2
+fails:Kernel.Integer is a negative binary number if there's a leading -0b and a base of 2
+fails:Kernel.Integer parses the value as a binary number if there's a leading 0B and the base is 2
+fails:Kernel.Integer is a positive binary number if there's a leading +0B and a base of 2
+fails:Kernel.Integer is a negative binary number if there's a leading -0B and a base of 2
+fails:Kernel.Integer parses the value as an octal number if there's a leading 0o and a base of 8
+fails:Kernel.Integer is a positive octal number if there's a leading +0o and a base of 8
+fails:Kernel.Integer is a negative octal number if there's a leading -0o and a base of 8
+fails:Kernel.Integer parses the value as an octal number if there's a leading 0O and a base of 8
+fails:Kernel.Integer is a positive octal number if there's a leading +0O and a base of 8
+fails:Kernel.Integer is a negative octal number if there's a leading -0O and a base of 8
+fails:Kernel.Integer parses the value as a decimal number if there's a leading 0D and a base of 10
+fails:Kernel.Integer is a positive decimal number if there's a leading +0D and a base of 10
+fails:Kernel.Integer is a negative decimal number if there's a leading -0D and a base of 10
+fails:Kernel.Integer parses the value as a decimal number if there's a leading 0d and a base of 10
+fails:Kernel.Integer is a positive decimal number if there's a leading +0d and a base of 10
+fails:Kernel.Integer is a negative decimal number if there's a leading -0d and a base of 10
+fails:Kernel#Integer ignores leading whitespace
+fails:Kernel#Integer ignores trailing whitespace
+fails:Kernel#Integer ignores an embedded _
+fails:Kernel#Integer ignores a single leading +
+fails:Kernel#Integer makes the number negative if there's a leading -
+fails:Kernel#Integer accepts wholly lowercase alphabetic strings for bases > 10
+fails:Kernel#Integer accepts wholly uppercase alphabetic strings for bases > 10
+fails:Kernel#Integer accepts mixed-case alphabetic strings for bases > 10
+fails:Kernel#Integer accepts alphanumeric strings for bases > 10
+fails:Kernel#Integer parses the value as a hex number if there's a leading 0x and a base of 16
+fails:Kernel#Integer is a positive hex number if there's a leading +0x and base of 16
+fails:Kernel#Integer is a negative hex number if there's a leading -0x and a base of 16
+fails:Kernel#Integer parses the value as a hex number if there's a leading 0X and a base of 16
+fails:Kernel#Integer is a positive hex number if there's a leading +0X and base of 16
+fails:Kernel#Integer is a negative hex number if there's a leading -0X and a base of 16
+fails:Kernel#Integer parses the value as a binary number if there's a leading 0b and the base is 2
+fails:Kernel#Integer is a positive binary number if there's a leading +0b and a base of 2
+fails:Kernel#Integer is a negative binary number if there's a leading -0b and a base of 2
+fails:Kernel#Integer parses the value as a binary number if there's a leading 0B and the base is 2
+fails:Kernel#Integer is a positive binary number if there's a leading +0B and a base of 2
+fails:Kernel#Integer is a negative binary number if there's a leading -0B and a base of 2
+fails:Kernel#Integer parses the value as an octal number if there's a leading 0o and a base of 8
+fails:Kernel#Integer is a positive octal number if there's a leading +0o and a base of 8
+fails:Kernel#Integer is a negative octal number if there's a leading -0o and a base of 8
+fails:Kernel#Integer parses the value as an octal number if there's a leading 0O and a base of 8
+fails:Kernel#Integer is a positive octal number if there's a leading +0O and a base of 8
+fails:Kernel#Integer is a negative octal number if there's a leading -0O and a base of 8
+fails:Kernel#Integer parses the value as a decimal number if there's a leading 0D and a base of 10
+fails:Kernel#Integer is a positive decimal number if there's a leading +0D and a base of 10
+fails:Kernel#Integer is a negative decimal number if there's a leading -0D and a base of 10
+fails:Kernel#Integer parses the value as a decimal number if there's a leading 0d and a base of 10
+fails:Kernel#Integer is a positive decimal number if there's a leading +0d and a base of 10
+fails:Kernel#Integer is a negative decimal number if there's a leading -0d and a base of 10

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/kernel/respond_to_missing_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/kernel/respond_to_missing_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/kernel/respond_to_missing_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1,8 @@
+fails:Kernel#respond_to_missing? returns false by default
+fails:Kernel#respond_to_missing? is called when #respond_to? would return false
+fails:Kernel#respond_to_missing? is called with true as the second argument when #respond_to? is
+fails:Kernel#respond_to_missing? causes #respond_to? to return true if called and not returning false
+fails:Kernel#respond_to_missing? causes #respond_to? to return false if called and returning false
+fails:Kernel#respond_to_missing? is not called with false as a second argument when #respond_to? is
+fails:Kernel#respond_to_missing? is called when obj responds to the given private method, include_private = false
+fails:Kernel#respond_to_missing? is called for missing class methods

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/matchdata/eql_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/matchdata/eql_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/matchdata/eql_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:MatchData#eql? returns true if both operands have equal target strings, patterns, and match positions

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/matchdata/equal_value_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/matchdata/equal_value_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/matchdata/equal_value_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:MatchData#== returns true if both operands have equal target strings, patterns, and match positions

Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/method/eql_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/method/eql_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/method/eql_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -1,2 +1,5 @@
 critical:Method#eql? returns true if the two core methods are aliases
 critical:Method#eql? returns true if the two methods are alises of each other in C
+fails:Method#eql? returns true if a method was defined using the other one
+fails:Method#eql? returns true for methods defined using the same block/proc
+fails:Method#eql? returns true for the same method missing

Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/method/equal_value_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/method/equal_value_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/method/equal_value_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -1,2 +1,5 @@
 critical:Method#== returns true if the two core methods are aliases
 critical:Method#== returns true if the two methods are alises of each other in C
+fails:Method#== returns true if a method was defined using the other one
+fails:Method#== returns true for methods defined using the same block/proc
+fails:Method#== returns true for the same method missing

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/method/name_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/method/name_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/method/name_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1,2 @@
+fails:Method#name returns the name of the method
+fails:Method#name returns the name even when aliased

Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/module/define_method_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/module/define_method_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/module/define_method_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -2,3 +2,4 @@
 fails:Module#define_method when given an UnboundMethod correctly passes given arguments to the new method
 fails:Module#define_method when given an UnboundMethod adds the new method to the methods list
 fails:Module#define_method defines the given method as an instance method with the given name in self
+fails:Module#define_method when given an UnboundMethod works for singleton classes too

Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/string/encode_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/string/encode_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/string/encode_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -18,3 +18,11 @@
 fails:String#encode raises an Encoding::InvalidByteSequenceError for invalid byte sequences
 fails:String#encode raises UndefinedConversionError if the String contains characters invalid for the target     encoding
 fails:String#encode raises Encoding::ConverterNotFoundError for invalid target encodings
+fails:String#encode! replaces invalid characters
+fails:String#encode! replaces undefined characters
+fails:String#encode! replaces xml characters
+fails:String#encode! replaces xml characters and quotes the result
+fails:String#encode replaces invalid characters
+fails:String#encode replaces undefined characters
+fails:String#encode replaces xml characters
+fails:String#encode replaces xml characters and quotes the result

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/time/gm_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/time/gm_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/time/gm_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:Time.gm should accept various year ranges

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/time/local_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/time/local_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/time/local_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:Time.local should accept various year ranges

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/time/mktime_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/time/mktime_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/time/mktime_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:Time.mktime should accept various year ranges

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/time/strftime_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/time/strftime_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/time/strftime_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:Time#strftime supports GNU modificators

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/time/utc_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/time/utc_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/time/utc_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:Time.utc should accept various year ranges

Added: MacRuby/trunk/spec/frozen/tags/macruby/core/unboundmethod/name_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/core/unboundmethod/name_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/unboundmethod/name_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1,2 @@
+fails:UnboundMethod#name returns the name of the method
+fails:UnboundMethod#name returns the name even when aliased

Added: MacRuby/trunk/spec/frozen/tags/macruby/language/hash_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/language/hash_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/language/hash_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:Hash literal freezes string keys on initialization

Modified: MacRuby/trunk/spec/frozen/tags/macruby/language/regexp/character_classes_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/language/regexp/character_classes_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/language/regexp/character_classes_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -26,3 +26,8 @@
 fails:Regexp with character classes matches Unicode uppercase characters with [[:word:]]
 fails:Regexp with character classes matches Unicode title-case characters with [[:word:]]
 fails:Regexp with character classes matches Unicode decimal digits with [[:word:]]
+fails:Regexp with character classes doesn't match Unicode private-use characters with [[:cntrl:]]
+fails:Regexp with character classes doesn't match Unicode format characters with [[:graph:]]
+fails:Regexp with character classes doesn't match Unicode format characters with [[:print:]]
+fails:Regexp with character classes doesn't match Unicode Nl characters with [[:word:]]
+fails:Regexp with character classes doesn't match Unicode No characters with [[:word:]]

Modified: MacRuby/trunk/spec/frozen/tags/macruby/language/regexp/encoding_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/language/regexp/encoding_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/language/regexp/encoding_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -1,2 +1,3 @@
 fails:Regexps with encoding modifiers supports /n (Normal encoding)
 fails:Regexps with encoding modifiers supports /s (Windows_31J encoding)
+fails:Regexps with encoding modifiers supports /n (No encoding)

Modified: MacRuby/trunk/spec/frozen/tags/macruby/library/cgi/cookie/value_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/library/cgi/cookie/value_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/library/cgi/cookie/value_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -2,3 +2,4 @@
 fails:CGI::Cookie#value= sets self's value
 fails:CGI::Cookie#value= automatically converts the passed Object to an Array using #Array
 fails:CGI::Cookie#value= does keep self and the values in sync
+fails:CGI::Cookie#value is in synch with self

Added: MacRuby/trunk/spec/frozen/tags/macruby/library/mathn/bignum/exponent_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/library/mathn/bignum/exponent_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/library/mathn/bignum/exponent_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:Bignum#** returns self raised to other (positive) power

Added: MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/det_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/det_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/det_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:Matrix#det returns the determinant of a Matrices containing 0 as first entry

Added: MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/determinant_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/determinant_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/determinant_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1 @@
+fails:Matrix#determinant returns the determinant of a Matrices containing 0 as first entry

Modified: MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/rank_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/rank_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/library/matrix/rank_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -1 +1,2 @@
-critical:Matrix#rank doesn't loop forever
\ No newline at end of file
+critical:Matrix#rank doesn't loop forever
+fails:Matrix#rank works for some easy rectangular matrices

Modified: MacRuby/trunk/spec/frozen/tags/macruby/library/socket/basicsocket/close_read_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/library/socket/basicsocket/close_read_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/library/socket/basicsocket/close_read_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -1,2 +1,3 @@
 fails:Socket::BasicSocket#close_read closes the reading end of the socket
 fails:Socket::BasicSocket#close_read it works on sockets with closed ends
+fails:Socket::BasicSocket#close_read raises IOError on closed socket

Modified: MacRuby/trunk/spec/frozen/tags/macruby/library/socket/basicsocket/close_write_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/library/socket/basicsocket/close_write_tags.txt	2009-10-04 21:46:08 UTC (rev 2714)
+++ MacRuby/trunk/spec/frozen/tags/macruby/library/socket/basicsocket/close_write_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -1,2 +1,3 @@
 fails:Socket::BasicSocket#close_write closes the writing end of the socket
 fails:Socket::BasicSocket#close_write works on sockets with closed write ends
+fails:Socket::BasicSocket#close_write raises IOError on closed socket

Added: MacRuby/trunk/spec/frozen/tags/macruby/library/socket/socket/getnameinfo_tags.txt
===================================================================
--- MacRuby/trunk/spec/frozen/tags/macruby/library/socket/socket/getnameinfo_tags.txt	                        (rev 0)
+++ MacRuby/trunk/spec/frozen/tags/macruby/library/socket/socket/getnameinfo_tags.txt	2009-10-04 21:46:47 UTC (rev 2715)
@@ -0,0 +1,2 @@
+fails:Socket#getnameinfo gets the name information and resolve the host
+fails:Socket#getnameinfo gets the name information and resolves the service
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20091004/62034162/attachment-0001.html>


More information about the macruby-changes mailing list