summaryrefslogtreecommitdiff
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
commitcb1d63724cf35b9f7af70a186ba4b4199c9f96e3 (patch)
tree20c9fc90d67b1f163664d8f1d525e2215677340a /bootstraptest
parentd420686fdc62e7b61f57b3299a831b0036f85e0c (diff)
* bootstraptest/test_knownbug.rb: a test for [ruby-dev:32054] moved to test/ruby/test_marshal.rb now.
git-svn-id: svn+ssh://ci.ruby-lang.org/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 330e1249c7..8ae5dc741c 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]'
-