summaryrefslogtreecommitdiff
path: root/bootstraptest/test_fiber.rb
diff options
context:
space:
mode:
Diffstat (limited to 'bootstraptest/test_fiber.rb')
-rw-r--r--bootstraptest/test_fiber.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/bootstraptest/test_fiber.rb b/bootstraptest/test_fiber.rb
index 2614dd13bf..ae809a5936 100644
--- a/bootstraptest/test_fiber.rb
+++ b/bootstraptest/test_fiber.rb
@@ -37,3 +37,8 @@ assert_normal_exit %q{
assert_normal_exit %q{
Fiber.new(&Object.method(:class_eval)).resume("foo")
}, '[ruby-dev:34128]'
+
+# [Bug #21400]
+assert_normal_exit %q{
+ Thread.new { Fiber.current.kill }.join
+}