From 47bd67cf08b6041e1868b69e1a54593c22a5a0a3 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 21 Jul 2015 21:37:44 +0000 Subject: test_client_expire: favor Process.spawn over fork+exec Process.spawn is faster under Linux since it may use vfork to avoid marking pages copy-on-write. --- test/test_client_expire.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/test_client_expire.rb b/test/test_client_expire.rb index 4f20803..c23a727 100644 --- a/test/test_client_expire.rb +++ b/test/test_client_expire.rb @@ -125,9 +125,8 @@ class TestClientExpire < Testcase opts = { out: "/dev/null", err: "/dev/null", close_others: true } begin pids = 2.times.map do - fork do - exec(*%W(ab -c #{nr} -n 9999999 -v1 -k http://#{host}:#{port}/), opts) - end + Process.spawn(*%W(ab -c #{nr} -n 9999999 -v1 -k + http://#{host}:#{port}/), opts) end re1 = %r{consider raising open file limits} -- cgit v1.2.3-24-ge0c7