summaryrefslogtreecommitdiff
path: root/test/-ext-/gvl/test_last_thread.rb
blob: cf5f28f4b61ca0bedafc20e004eb710fb0b2ee57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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