summaryrefslogtreecommitdiffstats
path: root/bootstraptest
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-15 01:11:52 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-15 01:11:52 +0000
commitb6aa13bdcbe0130e55c6e13dcdee1c65a0f4a974 (patch)
tree20c9fc90d67b1f163664d8f1d525e2215677340a /bootstraptest
parent4cf4c33d7d04a9a150422c963925d61b3456283e (diff)
downloadruby-b6aa13bdcbe0130e55c6e13dcdee1c65a0f4a974.tar.gz
ruby-b6aa13bdcbe0130e55c6e13dcdee1c65a0f4a974.tar.xz
ruby-b6aa13bdcbe0130e55c6e13dcdee1c65a0f4a974.zip
* bootstraptest/test_knownbug.rb: a test for [ruby-dev:32054] moved to test/ruby/test_marshal.rb now.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_knownbug.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index 330e1249c..8ae5dc741 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -42,18 +42,3 @@ assert_normal_exit %q{
}
}, '[ruby-dev:31985]'
-assert_normal_exit %q{
-class C
- def initialize(str)
- @str = str
- end
- def _dump(limit)
- @str
- end
- def C._load(s)
- C.new(s)
- end
-end
-Marshal.load("\004\bu:\006C\003\377\377\377a")
-}, '[ruby-dev:32054]'
-