summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-23 12:38:49 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-23 12:38:49 +0000
commitae7e1482562e4132ea2b3a37eefd124a343b9fc4 (patch)
treefe4524c308fbbfd2b3e1c2b8b5347fb69bca7999
parentec6c4abdba820541180b7d297dc40ee011a2dc8a (diff)
* test/ruby/test_marshal.rb: suppress warning during test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18190 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--test/ruby/test_marshal.rb9
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8299c10738..c11a8bc4ed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jul 23 21:38:16 2008 Yusuke Endoh <mame@tsg.ne.jp>
+
+ * test/ruby/test_marshal.rb: suppress warning during test.
+
Wed Jul 23 21:35:53 2008 Yusuke Endoh <mame@tsg.ne.jp>
* test/ruby/test_dir.rb: suppress warning during test.
diff --git a/test/ruby/test_marshal.rb b/test/ruby/test_marshal.rb
index 267f435bcb..069844583b 100644
--- a/test/ruby/test_marshal.rb
+++ b/test/ruby/test_marshal.rb
@@ -4,6 +4,15 @@ require_relative 'marshaltestlib'
class TestMarshal < Test::Unit::TestCase
include MarshalTestLib
+ def setup
+ @verbose = $VERBOSE
+ $VERBOSE = nil
+ end
+
+ def teardown
+ $VERBOSE = @verbose
+ end
+
def encode(o)
Marshal.dump(o)
end