-
-
Notifications
You must be signed in to change notification settings - Fork 922
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into truffle-head
Conflicts: truffle/src/main/java/org/jruby/truffle/nodes/RubyNode.java truffle/src/main/java/org/jruby/truffle/nodes/core/ArrayNodes.java
- Loading branch information
Showing
105 changed files
with
317 additions
and
357 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
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 was deleted.
Oops, something went wrong.
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,6 +1,4 @@ | ||
fails:Array#hash returns the same hash for equal recursive arrays | ||
fails:Array#hash returns the same hash for equal recursive arrays through hashes | ||
fails:Array#hash calls to_int on result of calling hash on each element | ||
fails:Array#hash returns same hash code for arrays with the same content | ||
fails:Array#hash returns the same value if arrays are #eql? | ||
fails:Array#hash properly handles recursive arrays |
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 was deleted.
Oops, something went wrong.
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,2 @@ | ||
fails:BasicObject#instance_exec is a public instance method | ||
fails:BasicObject#instance_exec sets self to the receiver in the context of the passed block | ||
fails:BasicObject#instance_exec passes arguments to the block |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
fails:Enumerator#inject requires multiple arguments | ||
fails:Enumerator#inject works when chained against each_with_index |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
fails:Module#instance_method requires an argument | ||
fails:Module#instance_method raises a NameError if the method has been undefined | ||
fails:Module#instance_method raises a NameError if the method does not exist | ||
fails:Module#instance_method sets the NameError#name attribute to the name of the missing method |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,7 +1,3 @@ | ||
fails:Random#bytes returns a String | ||
fails:Random#bytes returns a String of the length given as argument | ||
fails:Random#bytes returns an ASCII-8BIT String | ||
fails:Random#bytes returns the same output for a given seed | ||
fails:Random#bytes returns the same numeric output for a given seed accross all implementations and platforms | ||
fails:Random#bytes returns the same numeric output for a given huge seed accross all implementations and platforms | ||
fails:Random#bytes returns a random binary 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
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,27 +1,3 @@ | ||
fails:String#chop removes the final character | ||
fails:String#chop removes the final carriage return | ||
fails:String#chop removes the final newline | ||
fails:String#chop removes the final carriage return, newline | ||
fails:String#chop removes the carrige return, newline if they are the only characters | ||
fails:String#chop does not remove more than the final carriage return, newline | ||
fails:String#chop removes a multi-byte character | ||
fails:String#chop removes the final carriage return, newline from a multibyte String | ||
fails:String#chop removes the final carriage return, newline from a non-ASCII String | ||
fails:String#chop returns an empty string when applied to an empty string | ||
fails:String#chop returns a new string when applied to an empty string | ||
fails:String#chop taints result when self is tainted | ||
fails:String#chop untrusts result when self is untrusted | ||
fails:String#chop returns subclass instances when called on a subclass | ||
fails:String#chop! removes the final character | ||
fails:String#chop! removes the final carriage return | ||
fails:String#chop! removes the final newline | ||
fails:String#chop! removes the final carriage return, newline | ||
fails:String#chop! removes the carrige return, newline if they are the only characters | ||
fails:String#chop! does not remove more than the final carriage return, newline | ||
fails:String#chop! removes a multi-byte character | ||
fails:String#chop! removes the final carriage return, newline from a multibyte String | ||
fails:String#chop! removes the final carriage return, newline from a non-ASCII String | ||
fails:String#chop! returns self if modifications were made | ||
fails:String#chop! returns nil when called on an empty string | ||
fails:String#chop! raises a RuntimeError on a frozen instance that is modified | ||
fails:String#chop! raises a RuntimeError on a frozen instance that would not be modified |
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