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: f708ede37082
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b2a45ea4022d
Choose a head ref
  • 2 commits
  • 8 files changed
  • 1 contributor

Commits on Feb 2, 2016

  1. Copy the full SHA
    8976189 View commit details
  2. Copy the full SHA
    b2a45ea View commit details
1 change: 1 addition & 0 deletions spec/truffle/tags/core/dir/pwd_tags.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
fails:Dir.pwd correctly displays dirs with unicode characters in them
fails:Dir.pwd correctly handles dirs with unicode characters in them
1 change: 1 addition & 0 deletions spec/truffle/tags/core/io/sync_tags.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fails:IO#sync is false by default for STDOUT
3 changes: 3 additions & 0 deletions spec/truffle/tags/core/io/write_nonblock_tags.txt
Original file line number Diff line number Diff line change
@@ -9,3 +9,6 @@ fails:IO#write_nonblock does not warn if called after IO#read
fails:IO#write_nonblock writes to the current position after IO#read
fails:IO#write_nonblock advances the file position by the count of given bytes
fails:IO#write_nonblock raises IOError on closed stream
fails:IO#write_nonblock raises EAGAIN or a subclass when the write would block
fails:IO#write_nonblock raises an exception extending IO::WaitWritable when the write would block
fails:IO#write_nonblock raises IO::EAGAINWaitWritable when the operation would block
4 changes: 4 additions & 0 deletions spec/truffle/tags/core/kernel/Float_tags.txt
Original file line number Diff line number Diff line change
@@ -10,3 +10,7 @@ fails:Kernel#Float raises an ArgumentError for a String with an embedded \0
fails:Kernel#Float raises an ArgumentError for a String with a trailing \0
fails:Kernel#Float allows embedded _ in a number on either side of the e
fails:Kernel#Float allows embedded _ in a number on either side of the E
fails:Kernel.Float for hexadecimal literals with binary exponent allows embedded _ in a number on either side of the p
fails:Kernel.Float for hexadecimal literals with binary exponent allows embedded _ in a number on either side of the P
fails:Kernel#Float for hexadecimal literals with binary exponent allows embedded _ in a number on either side of the p
fails:Kernel#Float for hexadecimal literals with binary exponent allows embedded _ in a number on either side of the P
2 changes: 2 additions & 0 deletions spec/truffle/tags/core/range/inspect_tags.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
fails:Range#inspect returns a tainted string if either end is tainted
fails:Range#inspect returns a untrusted string if either end is untrusted
2 changes: 2 additions & 0 deletions spec/truffle/tags/core/range/to_s_tags.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
fails:Range#to_s returns a tainted string if either end is tainted
fails:Range#to_s returns a untrusted string if either end is untrusted
2 changes: 2 additions & 0 deletions spec/truffle/tags/core/string/split_tags.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
fails:String#split with String when limit is zero ignores leading and continuous whitespace when string is a single space
fails:String#split with String splits between characters when its argument is an empty string
fails:String#split with Regexp splits between characters when regexp matches a zero-length string
2 changes: 1 addition & 1 deletion truffle/src/main/ruby/core/float.rb
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ class Float
EPSILON = 2.2204460492503131e-16
RADIX = 2
ROUNDS = 1
MIN = 4.9E-324
MIN = 2.2250738585072014e-308
MAX = 1.7976931348623157e+308
MIN_EXP = -1021
MAX_EXP = 1024