X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fhelper%2Fserver.inc;h=78a63eee3098f71de890ad2dce7e88956b4ecda5;hp=265a861a4a9129656c24adc529d4f70fd99780f8;hb=74e7358add4c74d212b91d23e8600ef3c10d081e;hpb=455306442cd599c5a5750a70053b1a5f47b08538 diff --git a/tests/helper/server.inc b/tests/helper/server.inc index 265a861..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+PHP_INT_SIZE, 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 +}