Skip to content

Commit

Permalink
[Truffle] Tag even more specs failing on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvdrum committed Jan 28, 2015
1 parent 8af5002 commit a88eb46
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 4 deletions.
1 change: 1 addition & 0 deletions spec/truffle/tags/core/class/inherited_tags.txt
@@ -1 +1,2 @@
fails:Class.inherited is invoked with the child Class when self is subclassed
fails(windows bug):Class.inherited is invoked only once per subclass
1 change: 1 addition & 0 deletions spec/truffle/tags/core/encoding/dummy_tags.txt
@@ -1 +1,2 @@
fails(inherited):Encoding#dummy? returns true for dummy encodings
fails(windows bug):Encoding#dummy? returns true for dummy encodings
1 change: 1 addition & 0 deletions spec/truffle/tags/core/encoding/find_tags.txt
Expand Up @@ -10,3 +10,4 @@ fails:Encoding.find supports the 'locale' encoding alias
fails:Encoding.find returns default external encoding for the 'external' encoding alias
fails:Encoding.find returns default internal encoding for the 'internal' encoding alias
fails:Encoding.find uses default external encoding for the 'filesystem' encoding alias
fails(windows - Encoding.aliases):Encoding.find needs to be reviewed for spec completeness
5 changes: 3 additions & 2 deletions spec/truffle/tags/core/env/has_value_tags.txt
@@ -1,2 +1,3 @@
fails:ENV.has_value? returns true if ENV has the value
fails:ENV.has_value? returns false if ENV doesn't have the value
fails(Hash#has_value?):ENV.has_value? returns true if ENV has the value
fails(Hash#has_value?):ENV.has_value? returns false if ENV doesn't have the value
fails(windows - Hash#has_value?):ENV.has_value? looks up values case-insensitively
5 changes: 3 additions & 2 deletions spec/truffle/tags/core/env/value_tags.txt
@@ -1,2 +1,3 @@
fails:ENV.value? returns true if ENV has the value
fails:ENV.value? returns false if ENV doesn't have the value
fails(Hash#value?)S:ENV.value? returns true if ENV has the value
fails(Hash#value?):ENV.value? returns false if ENV doesn't have the value
fails(windows - Hash#value?):ENV.value? looks up values case-insensitively
4 changes: 4 additions & 0 deletions spec/truffle/tags/core/io/close_on_exec_tags.txt
Expand Up @@ -8,3 +8,7 @@ fails:IO#close_on_exec= returns nil
fails:IO#close_on_exec? returns true by default
fails:IO#close_on_exec? returns true if set
fails:IO#close_on_exec? raises IOError if called on a closed IO
fails(windows):IO#close_on_exec= returns false from #respond_to?
fails(windows):IO#close_on_exec= raises a NotImplementedError when called
fails(windows):IO#close_on_exec? returns false from #respond_to?
fails(windows):IO#close_on_exec? raises a NotImplementedError when called
2 changes: 2 additions & 0 deletions spec/truffle/tags/core/io/read_tags.txt
Expand Up @@ -92,3 +92,5 @@ fails:IO#read with internal encoding specified by encoding: option when passed n
fails:IO#read with internal encoding specified by encoding: option when passed nil for limit sets the buffer's encoding to the internal encoding
fails:IO#read with large data reads all the data at once
fails:IO#read with large data reads only the requested number of bytes
fails(windows):IO#read on Windows normalizes line endings in text mode
fails(windows):IO#read on Windows does not normalize line endings in binary mode
2 changes: 2 additions & 0 deletions spec/truffle/tags/core/io/readlines_tags.txt
Expand Up @@ -45,3 +45,5 @@ fails:IO.readlines when passed name, separator, limit, options calls #to_hash to
fails:IO.readlines encodes lines using the default external encoding
fails:IO.readlines encodes lines using the default internal encoding, when set
fails:IO.readlines ignores the default internal encoding if the external encoding is ASCII-8BIT
fails(windows bug):IO.readlines does not change $_
fails(windows bug):IO.readlines raises TypeError if the first parameter is nil
2 changes: 2 additions & 0 deletions spec/truffle/tags/core/io/write_tags.txt
Expand Up @@ -29,3 +29,5 @@ fails:IO#write does not warn if called after IO#read
fails:IO#write writes to the current position after IO#read
fails:IO#write advances the file position by the count of given bytes
fails:IO#write raises IOError on closed stream
fails(windows):IO#write on Windows normalizes line endings in text mode
fails(windows):IO#write on Windows does not normalize line endings in binary mode

0 comments on commit a88eb46

Please sign in to comment.