From 05c18139a1545a61caaaf33d888c8427d346b571 Mon Sep 17 00:00:00 2001 From: normal Date: Sat, 3 Feb 2018 22:24:17 +0000 Subject: thread.c (thread_join_m): avoid NUM2TIMET for Bignum Bignums exceed the range of time_t (or long). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_thread.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb index 1baaf889cb..6171c3a19e 100644 --- a/test/ruby/test_thread.rb +++ b/test/ruby/test_thread.rb @@ -1,6 +1,7 @@ # -*- coding: us-ascii -*- # frozen_string_literal: false require 'test/unit' +require "rbconfig/sizeof" class TestThread < Test::Unit::TestCase class Thread < ::Thread @@ -227,6 +228,14 @@ class TestThread < Test::Unit::TestCase t3.kill if t3 end + def test_join_limits + [ RbConfig::LIMITS['FIXNUM_MAX'], RbConfig::LIMITS['UINT64_MAX'], + Float::INFINITY ].each do |limit| + t = Thread.new {} + assert_same t, t.join(limit), "limit=#{limit.inspect}" + end + end + def test_kill_main_thread assert_in_out_err([], <<-INPUT, %w(1), []) p 1 -- cgit v1.2.3