mirror of
https://github.com/ruby/ruby.git
synced 2025-08-28 23:45:55 +02:00
* bignum.c (rb_str_to_inum): must be ASCII compatible encoding as
well as String#hex and String#oct. [ruby-core:43566][Bug #6192] * string.c (rb_must_asciicompat): check if ASCII compatible. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35120 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a13486997a
commit
163ab0a4da
6 changed files with 32 additions and 10 deletions
|
@ -1465,6 +1465,13 @@ class TestString < Test::Unit::TestCase
|
|||
assert_equal(0x4000000000000000, "4611686018427387904".to_i(10))
|
||||
assert_equal(1, "1__2".to_i(10))
|
||||
assert_equal(1, "1_z".to_i(10))
|
||||
|
||||
bug6192 = '[ruby-core:43566]'
|
||||
assert_raise(Encoding::CompatibilityError, bug6192) {"0".encode("utf-16be").to_i}
|
||||
assert_raise(Encoding::CompatibilityError, bug6192) {"0".encode("utf-16le").to_i}
|
||||
assert_raise(Encoding::CompatibilityError, bug6192) {"0".encode("utf-32be").to_i}
|
||||
assert_raise(Encoding::CompatibilityError, bug6192) {"0".encode("utf-32le").to_i}
|
||||
assert_raise(Encoding::CompatibilityError, bug6192) {"0".encode("iso-2022-jp").to_i}
|
||||
end
|
||||
|
||||
def test_to_s
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue