From 4875c125eb4e711af40933820e66caff5f0ca815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Wed, 27 Feb 2008 18:36:01 +0000 Subject: [PATCH] r2124@chromobil: stefan | 2008-02-27 19:34:57 +0100 test procedure: increased select timeout after killing lighttpd to avoid "Address already in use". git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2100 152afb58-edef-0310-8abb-c4023f1b3aa9 --- tests/LightyTest.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/LightyTest.pm b/tests/LightyTest.pm index 33eca612..07adbcd5 100755 --- a/tests/LightyTest.pm +++ b/tests/LightyTest.pm @@ -72,7 +72,7 @@ sub stop_proc { if (defined $pid) { kill('TERM',$pid) or return -1; - select(undef, undef, undef, 0.01); + select(undef, undef, undef, 0.1); } return 0;