summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-02 02:59:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-02 02:59:17 +0000
commit44d56b6780211733369d331a4dbe584cf49c2585 (patch)
tree6f51f130902f2b2ec3595eef20a10c0f35931451 /test
parentb75de9d512cacd41019055a18f3c72d25e95f872 (diff)
test_method.rb: finite loop
* test/ruby/test_method.rb (test_unlinked_method_entry_in_method_object_bug): do not expect timeout as normal result. [Bug #8100] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_method.rb11
1 files changed, 3 insertions, 8 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index da893b0646..0e2178d30c 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -772,19 +772,14 @@ class TestMethod < Test::Unit::TestCase
def test_unlinked_method_entry_in_method_object_bug
bug8100 = '[ruby-core:53640] [Bug #8100]'
- begin
- assert_normal_exit %q{
- loop do
+ assert_normal_exit %q{
+ 1_000_000.times do
def x
"hello" * 1000
end
method(:x).call
end
- }, bug8100, timeout: 2
- rescue Timeout::Error => e
- else
- end
- assert_raise(Timeout::Error, bug8100) {raise e if e}
+ }, bug8100
end
def test_singleton_method