summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-30 06:52:45 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-30 06:52:45 +0000
commit1a004904d1a9e61a404063538bb89c82530b814d (patch)
treec00ec33e60f732743793f81f8055895c1d0c876f /bootstraptest
parentadf5c69f295ff1eb8e6d698c77ef3e1a0e855109 (diff)
add test for [ruby-dev:31913].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13577 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_knownbug.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index 04872fa462..f75a714590 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -46,3 +46,8 @@ assert_normal_exit %q{
o.inspect
}
}, '[ruby-dev:31911]'
+
+assert_normal_exit %q{
+ require 'continuation'
+ Fiber.new{ callcc{|c| @c = c } }.resume
+}, '[ruby-dev:31913]'