-
-
Notifications
You must be signed in to change notification settings - Fork 925
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 9.4.12.0
- 9.4.11.0
- 9.4.10.0
- 9.4.9.0
- 9.4.8.0
- 9.4.7.0
- 9.4.6.0
- 9.4.5.0
- 9.4.4.0
- 9.4.3.0
- 9.4.2.0
- 9.4.1.0
- 9.4.0.0
- 9.3.15.0
- 9.3.14.0
- 9.3.13.0
- 9.3.12.0
- 9.3.11.0
- 9.3.10.0
- 9.3.9.0
- 9.3.8.0
- 9.3.7.0
- 9.3.6.0
- 9.3.5.0
- 9.3.4.0
- 9.3.3.0
- 9.3.2.0
- 9.3.1.0
- 9.3.0.0
- 9.2.21.0
- 9.2.20.1
- 9.2.20.0
- 9.2.19.0
- 9.2.18.0
- 9.2.17.0
- 9.2.16.0
- 9.2.15.0
- 9.2.14.0
- 9.2.13.0
- 9.2.12.0
- 9.2.11.1
- 9.2.11.0
- 9.2.10.0
- 9.2.9.0
- 9.2.8.0
- 9.2.7.0
- 9.2.6.0
- 9.2.5.0
- 9.2.4.1
- 9.2.4.0
- 9.2.3.0
- 9.2.2.0
- 9.2.1.0
- 9.2.0.0
- 9.1.17.0
- 9.1.16.0
- 9.1.15.0
- 9.1.14.0
- 9.1.13.0
- 9.1.12.0
- 9.1.11.0
- 9.1.10.0
- 9.1.9.0
- 9.1.8.0
- 9.1.7.0
- 9.1.6.0
- 9.1.5.0
- 9.1.4.0
- 9.1.3.0
- 9.1.2.0
- 9.1.1.0
- 9.1.0.0
Showing
43 changed files
with
152 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
slow:ARGF.read_nonblock reads a number of bytes from stdin | ||
slow:ARGF.read_nonblock reads up to the given bytes from STDIN | ||
slow:ARGF.read_nonblock reads up to the given bytes from a file when a file and STDIN are present | ||
fails:ARGF.read_nonblock treats second nil argument as no output buffer | ||
fails:ARGF.read_nonblock treats second argument as an output buffer | ||
fails:ARGF.read_nonblock clears output buffer before appending to it | ||
fails:ARGF.read_nonblock reads a number of bytes from the first file | ||
fails:ARGF.read_nonblock reads from a single file consecutively | ||
fails:ARGF.read_nonblock reads a number of bytes from stdin | ||
fails:ARGF.read_nonblock reads the contents of a special device file | ||
fails:ARGF.read_nonblock reads up to the given amount of bytes | ||
fails:ARGF.read_nonblock reads up to the given bytes from STDIN | ||
fails:ARGF.read_nonblock reads up to the given bytes from a file when a file and STDIN are present | ||
fails:ARGF.read_nonblock raises IO::EAGAINWaitReadable when STDIN is empty | ||
fails:ARGF.read_nonblock returns :wait_readable when the :exception is set to false | ||
fails:ARGF.read_nonblock when using multiple files reads up to the given amount of bytes from the first file | ||
fails:ARGF.read_nonblock when using multiple files returns an empty String when reading after having read the first file in its entirety |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
slow:ARGF.read reads the contents of stdin | ||
slow:ARGF.read reads a number of bytes from stdin | ||
slow:ARGF.read reads the contents of one file and stdin | ||
fails:ARGF.read clears output buffer before appending to it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
slow:ARGF.readpartial reads a number of bytes from stdin | ||
slow:ARGF.readpartial raises an EOFError if the exception was raised while reading STDIN | ||
fails:ARGF.readpartial treats second nil argument as no output buffer | ||
fails:ARGF.readpartial treats second argument as an output buffer | ||
fails:ARGF.readpartial clears output buffer before appending to it | ||
fails:ARGF.readpartial reads a number of bytes from the first file | ||
fails:ARGF.readpartial reads from a single file consecutively | ||
fails:ARGF.readpartial reads a number of bytes from stdin | ||
fails:ARGF.readpartial reads the contents of a special device file | ||
fails:ARGF.readpartial raises an ArgumentError if called without a maximum read length | ||
fails:ARGF.readpartial reads maximum number of bytes from one file at a time | ||
fails:ARGF.readpartial clears output buffer even if EOFError is raised because @argf is at end | ||
fails:ARGF.readpartial returns an empty string if EOFError is raised while reading any but the last file | ||
fails:ARGF.readpartial raises an EOFError if the exception was raised while reading the last file | ||
fails:ARGF.readpartial raises an EOFError if the exception was raised while reading STDIN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:Array#product when given a block returns self |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:BasicObject#method_missing for an instance sets the receiver of the raised NoMethodError |
7 changes: 7 additions & 0 deletions
7
spec/truffle/tags/core/binding/local_variable_defined_tags.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
fails:Binding#local_variable_defined? returns false when a variable is not defined | ||
fails:Binding#local_variable_defined? returns true when a regular local variable is defined | ||
fails:Binding#local_variable_defined? returns true when a local variable is defined using eval() | ||
fails:Binding#local_variable_defined? returns true when a local variable is defined using Binding#local_variable_set | ||
fails:Binding#local_variable_defined? returns true when a local variable is defined in a parent scope | ||
fails:Binding#local_variable_defined? allows usage of a String as the variable name | ||
fails:Binding#local_variable_defined? allows usage of an object responding to #to_str as the variable name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
fails:Binding#local_variable_set sets a local variable using a String as the variable name | ||
fails:Binding#local_variable_set sets a local variable using an object responding to #to_str as the variable name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:Enumerable#count when each yields multiple values accepts an argument for comparison using == |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:Enumerable#first returns a gathered array from yield parameters |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
fails:Enumerable#slice_before when given a block does not accept arguments | ||
fails:Enumerable#slice_before when an iterator method yields more than one value processes all yielded values |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:Enumerable#sort_by returns an array of elements when a block is supplied and #map returns an enumerable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
fails:Enumerator::Lazy#grep_v requires an argument | ||
fails:Enumerator::Lazy#grep_v returns a new instance of Enumerator::Lazy | ||
fails:Enumerator::Lazy#grep_v sets #size to nil | ||
fails:Enumerator::Lazy#grep_v calls the block with a gathered array when yield with multiple arguments | ||
fails:Enumerator::Lazy#grep_v when the returned lazy enumerator is evaluated by Enumerable#first stops after specified times when not given a block | ||
fails:Enumerator::Lazy#grep_v when the returned lazy enumerator is evaluated by Enumerable#first stops after specified times when given a block | ||
fails:Enumerator::Lazy#grep_v on a nested Lazy sets #size to nil | ||
fails:Enumerator::Lazy#grep_v on a nested Lazy when the returned lazy enumerator is evaluated by Enumerable#first stops after specified times when not given a block | ||
fails:Enumerator::Lazy#grep_v on a nested Lazy when the returned lazy enumerator is evaluated by Enumerable#first stops after specified times when given a block |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:ENV.each_pair with encoding transcodes from the locale encoding to Encoding.default_internal if set |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:ENV.each with encoding transcodes from the locale encoding to Encoding.default_internal if set |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
fails:File.mkfifo creates a FIFO file at the passed path | ||
fails:File.mkfifo creates a FIFO file with passed mode & ~umask | ||
fails:File.mkfifo creates a FIFO file with a default mode of 0666 & ~umask | ||
fails:File.mkfifo returns 0 after creating the FIFO file | ||
fails:File.mkfifo when path passed responds to :to_path creates a FIFO file at the path specified | ||
fails:File.mkfifo when path passed is not a String value raises a TypeError | ||
fails:File.mkfifo when path does not exist raises an Errno::ENOENT exception |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:IO#each_line with limit when limit is 0 raises an ArgumentError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:IO#each with limit when limit is 0 raises an ArgumentError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
fails:IO#puts writes just a newline when given just a newline | ||
fails:IO#puts calls :to_ary before writing non-string objects, regardless of it being implemented in the receiver | ||
fails:IO#puts calls :to_ary before writing non-string objects | ||
fails:IO#puts returns general object info if :to_s does not return a string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
fails:IO#read_nonblock returns less data if that is all that is available | ||
fails:IO#read_nonblock raises EOFError when the end is reached | ||
fails:IO#read_nonblock when exception option is set to false when there is no data returns :wait_readable | ||
fails:IO#read_nonblock when exception option is set to false when the end is reached returns nil |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
fails:Numeric#negative? on positive numbers returns false | ||
fails:Numeric#negative? on zero returns false | ||
fails:Numeric#negative? on negative numbers returns true | ||
fails:Numeric#negative? returns true if self is less than 0 | ||
fails:Numeric#negative? returns false if self is greater than 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
fails:Numeric#positive? on positive numbers returns true | ||
fails:Numeric#positive? on zero returns false | ||
fails:Numeric#positive? on negative numbers returns false | ||
fails:Numeric#positive? returns true if self is greater than 0 | ||
fails:Numeric#positive? returns false if self is less than 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:String.new accepts an encoding argument |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
fails:String#-@ returns self if the String is frozen | ||
fails:String#-@ returns a frozen copy if the String is not frozen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
fails:String#+@ returns an unfrozen copy of a frozen String | ||
fails:String#+@ returns self if the String is not frozen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fails:String#valid_encoding? returns true if an invalid string is appended another invalid one but both make a valid string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
fails:Struct#dig returns the nested value specified by the sequence of keys | ||
fails:Struct#dig returns the nested value specified if the sequence includes an index | ||
fails:Struct#dig returns nil if any intermediate step is nil | ||
fails:Struct#dig raises a TypeError if any intermediate step does not respond to #dig | ||
fails:Struct#dig raises an ArgumentError if no arguments provided | ||
fails:Struct#dig calls #dig on any intermediate step with the rest of the sequence as arguments |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
fails:The super keyword when using keyword arguments passes any given keyword arguments to the parent | ||
fails:The super keyword when using keyword arguments passes any given keyword arguments including optional and required ones to the parent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
fails:Coverage.peek_result returns the result so far | ||
fails:Coverage.peek_result immediate second call returns same result | ||
fails:Coverage.peek_result second call after require returns accumulated result | ||
fails:Coverage.peek_result call right before Coverage.result should give equal result |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
fails:Coverage.result gives the covered files as a hash with arrays of count or nil | ||
fails:Coverage.result no requires/loads should give empty hash | ||
fails:Coverage.result second call should give exception | ||
fails:Coverage.result second run should give same result | ||
fails:Coverage.result second run without load/require should give empty hash | ||
fails:Coverage.result second Coverage.start does nothing | ||
fails:Coverage.result should list coverage for the required file starting coverage | ||
fails:Coverage.result should list coverage for the loaded file starting coverage |