X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fhelper%2Fserver.inc;h=091ff5cd483834d5c88d7e6304b42270bad9fe91;hp=265a861a4a9129656c24adc529d4f70fd99780f8;hb=1f37d09e4c7f55cf6f2c3c10ea3ec2424a482671;hpb=455306442cd599c5a5750a70053b1a5f47b08538 diff --git a/tests/helper/server.inc b/tests/helper/server.inc index 265a861..091ff5c 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 +69,7 @@ function serve($cb) { break; } } - } while ($select !== false); + } while ($select); return; } } @@ -50,7 +86,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 +143,4 @@ function proc($bin, $args, $cb) { fpassthru($stderr); fpassthru($stdout); } -} \ No newline at end of file +}