aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_m17n.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-12 05:14:23 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-12 05:14:23 +0000
commit6913b2734a80fab9dffea70f573555d96b45e226 (patch)
tree33bd484587e488a8c4ea452ac56dded278b0bb84 /test/ruby/test_m17n.rb
parent243831cd37bd6bb6504eba062c5b0e02bb69711f (diff)
downloadruby-6913b2734a80fab9dffea70f573555d96b45e226.tar.gz
* numeric.c (int_chr): a codepoint of Ruby M17N must be 32bit
unsigned int; GB18030 uses MSB. Also note that OnigCodePoint is defined as uisigned int. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29445 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_m17n.rb')
-rw-r--r--test/ruby/test_m17n.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_m17n.rb b/test/ruby/test_m17n.rb
index 07cda751d1..9f1419df7d 100644
--- a/test/ruby/test_m17n.rb
+++ b/test/ruby/test_m17n.rb
@@ -1139,6 +1139,7 @@ class TestM17N < Test::Unit::TestCase
0.upto(255) {|b|
assert_equal([b].pack("C"), b.chr)
}
+ assert_equal("\x84\x31\xA4\x39".force_encoding("GB18030"), 0x8431A439.chr("GB18030"))
end
def test_marshal