X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fhelper%2Fserver.inc;h=78a63eee3098f71de890ad2dce7e88956b4ecda5;hp=3d49a85363d7a714ebd80d2d020bd2c1f9cda454;hb=53a654ed6e112b2766b41c01a1c2bb79373c59e4;hpb=62e6b88c7223f15646c8dcfd0e974b03cd5cf63a diff --git a/tests/helper/server.inc b/tests/helper/server.inc index 3d49a85..78a63ee 100644 --- a/tests/helper/server.inc +++ b/tests/helper/server.inc @@ -1,5 +1,19 @@ getMessage()); /* ignore disconnect */ if ($ex->getMessage() !== "Empty message received from stream") { fprintf(STDERR, "%s\n", $ex); @@ -33,7 +70,7 @@ function serve($cb) { break; } } - } while ($select !== false); + } while ($select); return; } } @@ -50,7 +87,8 @@ function server($handler, $cb) { function nghttpd($cb) { $spec = array(array("pipe","r"), array("pipe","w"), array("pipe","w")); - foreach (range(8000, 9000) as $port) { + $offset = rand(0,2000); + foreach (range(8000+$offset, 9000+$offset) as $port) { $comm = "exec nghttpd -d html $port http2.key http2.crt"; if (($proc = proc_open($comm, $spec, $pipes, __DIR__))) { $stdin = $pipes[0]; @@ -106,4 +144,4 @@ function proc($bin, $args, $cb) { fpassthru($stderr); fpassthru($stdout); } -} \ No newline at end of file +}