From 75f398a6dfa78501c3c0ee9cef00f35901fd6541 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 22 May 2008 05:20:59 +0000 Subject: * array.c (flatten): check if reentered. [ruby-dev:34798] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16525 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_array.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/ruby') diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb index 0cbeb435a..5618d1545 100644 --- a/test/ruby/test_array.rb +++ b/test/ruby/test_array.rb @@ -727,7 +727,7 @@ class TestArray < Test::Unit::TestCase end def test_flatten_with_callcc - respond_to?(:callcc) or require 'continuation' + respond_to?(:callcc, true) or require 'continuation' o = Object.new def o.to_ary() callcc {|k| @cont = k; [1,2,3]} end begin @@ -1148,7 +1148,7 @@ class TestArray < Test::Unit::TestCase end def test_sort_with_callcc - respond_to?(:callcc) or require 'continuation' + respond_to?(:callcc, true) or require 'continuation' n = 1000 cont = nil ary = (1..100).to_a -- cgit