Skip to content

Commit

Permalink
Showing 7 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/tags/ruby/core/array/flatten_tags.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
fails:Array#flatten with a non-Array object in the Array does not call #to_ary if not defined when #respond_to_missing? returns false
fails:Array#flatten with a non-Array object in the Array calls #to_ary if not defined when #respond_to_missing? returns true
1 change: 1 addition & 0 deletions spec/tags/ruby/core/comparable/equal_value_tags.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fails:Comparable#== when #<=> calls super calls the defined #<=> only once for different objects
1 change: 1 addition & 0 deletions spec/tags/ruby/core/enumerator/lazy/take_tags.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
fails:Enumerator::Lazy#take sets given count to size if the given count is less than old size
fails:Enumerator::Lazy#take on a nested Lazy sets given count to size if the given count is less than old size
fails:Enumerator::Lazy#take sets given count to size if the old size is Infinity
2 changes: 2 additions & 0 deletions spec/tags/ruby/core/io/for_fd_tags.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
fails:IO.for_fd raises an error if passed binary/text mode two ways
fails:IO.for_fd raises an error if passed matching binary/text mode two ways
fails:IO.for_fd raises an error if passed conflicting binary/text mode two ways
2 changes: 2 additions & 0 deletions spec/tags/ruby/core/io/new_tags.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
fails:IO.new raises an error if passed binary/text mode two ways
fails:IO.new raises an error if passed matching binary/text mode two ways
fails:IO.new raises an error if passed conflicting binary/text mode two ways
2 changes: 2 additions & 0 deletions spec/tags/ruby/core/kernel/spawn_tags.txt
Original file line number Diff line number Diff line change
@@ -51,3 +51,5 @@ fails:Kernel#spawn when passed :close_others => false does not close file descri
fails:Kernel.spawn when passed :close_others => false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Kernel#spawn when passed :close_others => false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Kernel.spawn when passed :close_others => false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Kernel#spawn redirects STDOUT to the given file if :out => [String name, String mode]
fails:Kernel.spawn redirects STDOUT to the given file if :out => [String name, String mode]
1 change: 1 addition & 0 deletions spec/tags/ruby/core/process/spawn_tags.txt
Original file line number Diff line number Diff line change
@@ -17,3 +17,4 @@ fails:Process.spawn redirects STDOUT to the given file if :out => String
fails:Process.spawn redirects STDERR to the given file if :err => String
fails:Process.spawn when passed :close_others => false does not close file descriptors >= 3 in the child process if fds are set close_on_exec=false
fails:Process.spawn when passed :close_others => false closes file descriptors >= 3 in the child process because they are set close_on_exec by default
fails:Process.spawn redirects STDOUT to the given file if :out => [String name, String mode]

0 comments on commit f20ed93

Please sign in to comment.