HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.7.4/test/-ext-/gvl/test_last_thread.rb
# frozen_string_literal: false
class TestLastThread < Test::Unit::TestCase

  # [Bug #11237]
  def test_last_thread
    assert_separately([], <<-"end;") #do
      require '-test-/gvl/call_without_gvl'

      Thread.new {
        sleep 0.2
      }

      t0 = Time.now
      Thread.current.__runnable_sleep__ 1
      t1 = Time.now
      t = t1 - t0

      assert_in_delta(1.0, t, 0.16)
    end;
  end
end