summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-06 14:58:43 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-06 14:58:43 +0000
commit1f53145dd467ebdb5d25a234f69d774ba0086afe (patch)
tree11fd401966c6af2024d4231a766a0f566ea5f973 /test/ruby
parentfa892d27af38ef0685e944bf3a26390ef336b2ba (diff)
pack.c: escape and encoding
* pack.c (pack_pack): escape unprintable characters and preserve the encoding of warning message. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48307 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_pack.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ruby/test_pack.rb b/test/ruby/test_pack.rb
index 59edc3eb4b..5d2b656058 100644
--- a/test/ruby/test_pack.rb
+++ b/test/ruby/test_pack.rb
@@ -718,5 +718,13 @@ EXPECTED
assert_warning(/unknown pack directive ',' in ','/) {
[].pack(",")
}
+ assert_warning(/\A[ -~]+\Z/) {
+ [].pack("\x7f")
+ }
+ assert_warning(/\A(.* in '\u{3042}'\n)+\z/) {
+ EnvUtil.with_default_external(Encoding::UTF_8) {
+ [].pack("\u{3042}")
+ }
+ }
end
end