aboutsummaryrefslogtreecommitdiffstats
path: root/bootstraptest/test_knownbug.rb
diff options
context:
space:
mode:
Diffstat (limited to 'bootstraptest/test_knownbug.rb')
-rw-r--r--bootstraptest/test_knownbug.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index 20533fa1b1..259ebc21ff 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -13,31 +13,3 @@ assert_finish 1, %q{
w.write "a"
}, '[ruby-dev:31866]'
-assert_equal "[[nil, 1, 3, 3, 1, nil, nil], [nil, 2, 2, nil]]", %q{
- def tvar(var, val)
- old = Thread.current[var]
- begin
- Thread.current[var] = val
- yield
- ensure
- Thread.current[var] = old
- end
- end
- ary1 = []
- ary2 = []
- fb = Fiber.new {
- ary2 << Thread.current[:v]; tvar(:v, 2) {
- ary2 << Thread.current[:v]; Fiber.yield
- ary2 << Thread.current[:v]; }
- ary2 << Thread.current[:v]; Fiber.yield
- ary2 << Thread.current[:v]
- }
- ary1 << Thread.current[:v]; tvar(:v,1) {
- ary1 << Thread.current[:v]; tvar(:v,3) {
- ary1 << Thread.current[:v]; fb.resume
- ary1 << Thread.current[:v]; }
- ary1 << Thread.current[:v]; }
- ary1 << Thread.current[:v]; fb.resume
- ary1 << Thread.current[:v];
- [ary1, ary2]
-}