summaryrefslogtreecommitdiffstats
path: root/test/ruby
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-15 11:20:45 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-15 11:20:45 +0000
commitfe99d6f3042797ea3a9a5d6eeee1eae6136ae96c (patch)
treefebaabdbd1183c20b68dcb383656a447db3db0fc /test/ruby
parent408df9fc63dd3fc00422145c414fde91563d45f1 (diff)
downloadruby-fe99d6f3042797ea3a9a5d6eeee1eae6136ae96c.tar.gz
ruby-fe99d6f3042797ea3a9a5d6eeee1eae6136ae96c.tar.xz
ruby-fe99d6f3042797ea3a9a5d6eeee1eae6136ae96c.zip
avoid ruby -d test/ruby/test_marshal.rb output binary marshaled data.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/marshaltestlib.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/marshaltestlib.rb b/test/ruby/marshaltestlib.rb
index f334945c8..211bbd879 100644
--- a/test/ruby/marshaltestlib.rb
+++ b/test/ruby/marshaltestlib.rb
@@ -17,7 +17,7 @@ module MarshalTestLib
def marshaltest(o1)
str = encode(o1)
- print str, "\n" if $DEBUG
+ print str.dump, "\n" if $DEBUG
o2 = decode(str)
o2
end