Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ffda39d3b0f1
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f29469ed83a4
Choose a head ref
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on Feb 16, 2015

  1. Copy the full SHA
    582a44a View commit details
  2. Copy the full SHA
    f29469e View commit details
6 changes: 0 additions & 6 deletions spec/truffle/tags/core/string/append_tags.txt
Original file line number Diff line number Diff line change
@@ -5,9 +5,3 @@ fails:String#<< with Integer returns a ASCII-8BIT string if self is US-ASCII and
fails:String#<< with Integer raises RangeError if the argument is an invalid codepoint for self's encoding
fails:String#<< with Integer raises RangeError if the argument is negative
fails:String#<< with Integer raises a RuntimeError when self is frozen
fails:String#<< when self is in an ASCII-incompatible encoding incompatible with the argument's encoding uses the argument's encoding if self is empty
fails:String#<< when self is in an ASCII-incompatible encoding incompatible with the argument's encoding raises Encoding::CompatibilityError if neither are empty
fails:String#<< when the argument is in an ASCII-incompatible encoding incompatible with self's encoding uses the argument's encoding if self is empty
fails:String#<< when the argument is in an ASCII-incompatible encoding incompatible with self's encoding raises Encoding::CompatibilityError if neither are empty
fails:String#<< when self and the argument are in different ASCII-compatible encodings uses the argument's encoding if self is ASCII-only
fails:String#<< when self and the argument are in different ASCII-compatible encodings raises Encoding::CompatibilityError if neither are ASCII-only
1 change: 0 additions & 1 deletion spec/truffle/tags/core/string/case_compare_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/core/string/chomp_tags.txt
Original file line number Diff line number Diff line change
@@ -27,7 +27,6 @@ fails:String#chomp! when passed '\n' removes one trailing carrige return, newlin
fails:String#chomp! when passed '\n' returns nil when self is empty
fails:String#chomp! when passed a String returns nil if the argument does not match the trailing characters
fails:String#chomp! when passed a String returns nil when self is empty
fails:String#chomp! when passed a String does not taint the result when the argument is tainted
fails:String#chomp removes the final carriage return, newline from a non-ASCII String
fails:String#chomp! returns nil when the String is not modified
fails:String#chomp! removes the final carriage return, newline from a non-ASCII String
1 change: 0 additions & 1 deletion spec/truffle/tags/core/string/comparison_tags.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
fails:String#<=> with String ignores encoding difference
fails:String#<=> with String compares the indices of the encodings when the strings have identical non-ASCII-compatible bytes
fails:String#<=> returns nil if its argument provides neither #to_str nor #<=>
fails:String#<=> uses the result of calling #<=> on its argument when #<=> is defined but #to_str is not
fails:String#<=> returns nil if argument also uses an inverse comparison for <=>
1 change: 0 additions & 1 deletion spec/truffle/tags/core/string/force_encoding_tags.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
fails:String#force_encoding calls #to_str to convert an object to an encoding name
fails:String#force_encoding raises a TypeError if #to_str does not return a String
fails:String#force_encoding sets the encoding even if the String contents are invalid in that encoding