[#81492] [Ruby trunk Feature#13618] [PATCH] auto fiber schedule for rb_wait_for_single_fd and rb_waitpid — normalperson@...
Issue #13618 has been reported by normalperson (Eric Wong).
12 messages
2017/06/01
[#88695] Re: [Ruby trunk Feature#13618] [PATCH] auto fiber schedule for rb_wait_for_single_fd and rb_waitpid
— Eric Wong <normalperson@...>
2018/08/27
> https://bugs.ruby-lang.org/issues/13618
[#81569] [Ruby trunk Feature#12589] VM performance improvement proposal — vmakarov@...
Issue #12589 has been updated by vmakarov (Vladimir Makarov).
3 messages
2017/06/04
[#81581] [Ruby trunk Bug#13632] Not processable interrupt queue for a thread after it's notified that FD is closed in some other thread. — sir.nickolas@...
Issue #13632 has been reported by nvashchenko (Nikolay Vashchenko).
4 messages
2017/06/05
[#81590] Re: [ruby-cvs:66197] ko1:r59023 (trunk): revert r59020 because it may fail some tests sometimes on some environment (http://ci.rvm.jp/). This revert is to check the reason of failures. — Eric Wong <normalperson@...>
ko1@ruby-lang.org wrote:
5 messages
2017/06/06
[#81591] Re: [ruby-cvs:66197] ko1:r59023 (trunk): revert r59020 because it may fail some tests sometimes on some environment (http://ci.rvm.jp/). This revert is to check the reason of failures.
— Eric Wong <normalperson@...>
2017/06/06
Eric Wong <normalperson@yhbt.net> wrote:
[#81596] Re: [ruby-cvs:66203] Re: Re: ko1:r59023 (trunk): revert r59020 because it may fail some tests sometimes on some environment (http://ci.rvm.jp/). This revert is to check the reason of failures.
— Eric Wong <normalperson@...>
2017/06/06
Eric Wong <normalperson@yhbt.net> wrote:
[#81825] [Ruby trunk Feature#13697] [PATCH]: futex based thread primitives — normalperson@...
Issue #13697 has been reported by normalperson (Eric Wong).
3 messages
2017/06/29
[ruby-core:81751] [Ruby trunk Bug#13674] BigDecimal comparison with Float::INFINITY is erroneous in 2.2.x and 2.3.x
From:
eregontp@...
Date:
2017-06-23 12:21:48 UTC
List:
ruby-core #81751
Issue #13674 has been reported by Eregon (Benoit Daloze).
----------------------------------------
Bug #13674: BigDecimal comparison with Float::INFINITY is erroneous in 2.2.x and 2.3.x
https://bugs.ruby-lang.org/issues/13674
* Author: Eregon (Benoit Daloze)
* Status: Open
* Priority: Normal
* Assignee:
* Target version:
* ruby -v: ruby 2.3.3p222 (2016-11-21 revision 56859) [x86_64-linux]
* Backport: 2.2: REQUIRED, 2.3: REQUIRED, 2.4: DONTNEED
----------------------------------------
BigDecimal("-0.2E5556") > -Float::INFINITY
returns wrong results in MRI 2.2.x and 2.3.x:
for ruby in 2.0.0-p647 2.1.7 2.2.3 2.2.6 2.2.7 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.4.0 2.4.1 trunk; do chruby $ruby; ruby -v -rbigdecimal -e 'p BigDecimal("-0.2E5556") > -Float::INFINITY'; done
ruby 2.0.0p647 (2015-08-18) [x86_64-linux]
-e:1:in `to_r': -Infinity (FloatDomainError)
from -e:1:in `>'
from -e:1:in `<main>'
ruby 2.1.7p400 (2015-08-18 revision 51632) [x86_64-linux]
-e:1:in `to_r': -Infinity (FloatDomainError)
from -e:1:in `>'
from -e:1:in `<main>'
ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-linux]
-e:1:in `to_r': -Infinity (FloatDomainError)
from -e:1:in `>'
from -e:1:in `<main>'
ruby 2.2.6p396 (2016-11-15 revision 56800) [x86_64-linux]
false
ruby 2.2.7p470 (2017-03-28 revision 58194) [x86_64-linux]
false
ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-linux]
-e:1:in `to_r': -Infinity (FloatDomainError)
from -e:1:in `>'
from -e:1:in `<main>'
ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-linux]
-e:1:in `to_r': -Infinity (FloatDomainError)
from -e:1:in `>'
from -e:1:in `<main>'
ruby 2.3.2p217 (2016-11-15 revision 56796) [x86_64-linux]
false
ruby 2.3.3p222 (2016-11-21 revision 56859) [x86_64-linux]
false
ruby 2.3.4p301 (2017-03-30 revision 58214) [x86_64-linux]
false
ruby 2.4.0p0 (2016-12-24 revision 57164) [x86_64-linux]
true
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux]
true
ruby 2.5.0dev (2017-06-13 trunk 59075) [x86_64-linux]
true
This was discovered by ruby/specs added in JRuby in https://github.com/jruby/jruby/pull/4618.
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>