test/lib_server_accept.rb in kgio-2.7.4 vs test/lib_server_accept.rb in kgio-2.8.0
- old
+ new
@@ -45,11 +45,11 @@
pid = fork { sleep 1; a = client_connect; sleep }
b = @srv.kgio_accept
elapsed = Time.now - t0
assert_kind_of Kgio::Socket, b
assert_equal @host, b.kgio_addr
- Process.kill(:TERM, pid)
+ Process.kill(:KILL, pid)
Process.waitpid(pid)
assert elapsed >= 1, "elapsed: #{elapsed}"
end
def test_blocking_accept_with_nonblock_socket
@@ -58,30 +58,30 @@
pid = fork { sleep 1; a = client_connect; sleep }
b = @srv.kgio_accept
elapsed = Time.now - t0
assert_kind_of Kgio::Socket, b
assert_equal @host, b.kgio_addr
- Process.kill(:TERM, pid)
+ Process.kill(:KILL, pid)
Process.waitpid(pid)
assert elapsed >= 1, "elapsed: #{elapsed}"
t0 = Time.now
pid = fork { sleep 6; a = client_connect; sleep }
b = @srv.kgio_accept
elapsed = Time.now - t0
assert_kind_of Kgio::Socket, b
assert_equal @host, b.kgio_addr
- Process.kill(:TERM, pid)
+ Process.kill(:KILL, pid)
Process.waitpid(pid)
assert elapsed >= 6, "elapsed: #{elapsed}"
t0 = Time.now
pid = fork { sleep 1; a = client_connect; sleep }
b = @srv.kgio_accept
elapsed = Time.now - t0
assert_kind_of Kgio::Socket, b
assert_equal @host, b.kgio_addr
- Process.kill(:TERM, pid)
+ Process.kill(:KILL, pid)
Process.waitpid(pid)
assert elapsed >= 1, "elapsed: #{elapsed}"
end
end