mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
parent
cf2bbcfff2
commit
d0a822eec5
Notes:
git
2022-04-12 21:31:09 +09:00
2 changed files with 20 additions and 1 deletions
|
@ -1552,6 +1552,7 @@ break2:
|
|||
if (!*++s || !(s1 = strchr(hexdigit, *s))) goto ret0;
|
||||
if (*s == '0') {
|
||||
while (*++s == '0');
|
||||
if (!*s) goto ret;
|
||||
s1 = strchr(hexdigit, *s);
|
||||
}
|
||||
if (s1 != NULL) {
|
||||
|
@ -1574,7 +1575,7 @@ break2:
|
|||
for (; *s && (s1 = strchr(hexdigit, *s)); ++s) {
|
||||
adj += aadj * ((s1 - hexdigit) & 15);
|
||||
if ((aadj /= 16) == 0.0) {
|
||||
while (strchr(hexdigit, *++s));
|
||||
while (*++s && strchr(hexdigit, *s));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -171,6 +171,24 @@ class TestFloat < Test::Unit::TestCase
|
|||
assert_raise(ArgumentError, n += z + "A") {Float(n)}
|
||||
assert_raise(ArgumentError, n += z + ".0") {Float(n)}
|
||||
end
|
||||
|
||||
x = nil
|
||||
2000.times do
|
||||
x = Float("0x"+"0"*30)
|
||||
break unless x == 0.0
|
||||
end
|
||||
assert_equal(0.0, x, ->{"%a" % x})
|
||||
x = nil
|
||||
2000.times do
|
||||
begin
|
||||
x = Float("0x1."+"0"*270)
|
||||
rescue ArgumentError => e
|
||||
raise unless /"0x1\.0{270}"/ =~ e.message
|
||||
else
|
||||
break
|
||||
end
|
||||
end
|
||||
assert_nil(x, ->{"%a" % x})
|
||||
end
|
||||
|
||||
def test_divmod
|
||||
|
|
Loading…
Reference in a new issue