From 2c1c5570e83ab6cc7f832cf0249e0c44cb2689e0 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 16 Apr 2015 11:43:37 +0000 Subject: marshal.c: class name encoding * marshal.c (w_object): preserve the encoding of the class name in an error message. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50329 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- marshal.c | 4 ++-- test/ruby/test_marshal.rb | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/marshal.c b/marshal.c index 1fae54530a..b38c53c05c 100644 --- a/marshal.c +++ b/marshal.c @@ -904,8 +904,8 @@ w_object(VALUE obj, struct dump_arg *arg, int limit) break; default: - rb_raise(rb_eTypeError, "can't dump %s", - rb_obj_classname(obj)); + rb_raise(rb_eTypeError, "can't dump %"PRIsVALUE, + rb_obj_class(obj)); break; } RB_GC_GUARD(obj); diff --git a/test/ruby/test_marshal.rb b/test/ruby/test_marshal.rb index 3d5d6c9b1f..c8d79edb02 100644 --- a/test/ruby/test_marshal.rb +++ b/test/ruby/test_marshal.rb @@ -647,4 +647,11 @@ class TestMarshal < Test::Unit::TestCase c.cc.call end end + + def test_undumpable_message + c = Module.new {break module_eval("class IO\u{26a1} < IO;self;end")} + assert_raise_with_message(TypeError, /IO\u{26a1}/) { + Marshal.dump(c.new(0, autoclose: false)) + } + end end -- cgit v1.2.3