mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/ruby/test_io.rb (TestIO#test_ungetc2): get rid of busy loop.
* test/ruby/test_signal.rb (TestSignal#test_signal2): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31746 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
83e216b670
commit
faaf8ea8af
2 changed files with 5 additions and 5 deletions
|
@ -827,7 +827,7 @@ class TestIO < Test::Unit::TestCase
|
|||
def test_ungetc2
|
||||
f = false
|
||||
pipe(proc do |w|
|
||||
0 until f
|
||||
Thread.pass until f
|
||||
w.write("1" * 10000)
|
||||
w.close
|
||||
end, proc do |r|
|
||||
|
|
|
@ -119,21 +119,21 @@ class TestSignal < Test::Unit::TestCase
|
|||
Timeout.timeout(10) do
|
||||
x = false
|
||||
Process.kill(SignalException.new(:INT).signo, $$)
|
||||
nil until x
|
||||
sleep(0.01) until x
|
||||
|
||||
x = false
|
||||
Process.kill("INT", $$)
|
||||
nil until x
|
||||
sleep(0.01) until x
|
||||
|
||||
x = false
|
||||
Process.kill("SIGINT", $$)
|
||||
nil until x
|
||||
sleep(0.01) until x
|
||||
|
||||
x = false
|
||||
o = Object.new
|
||||
def o.to_str; "SIGINT"; end
|
||||
Process.kill(o, $$)
|
||||
nil until x
|
||||
sleep(0.01) until x
|
||||
end
|
||||
|
||||
assert_raise(ArgumentError) { Process.kill(Object.new, $$) }
|
||||
|
|
Loading…
Add table
Reference in a new issue