summaryrefslogtreecommitdiff
path: root/test/it_url_server.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/it_url_server.php')
-rw-r--r--test/it_url_server.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/it_url_server.php b/test/it_url_server.php
index b113be1..c832ee5 100644
--- a/test/it_url_server.php
+++ b/test/it_url_server.php
@@ -1,7 +1,8 @@
<?php
+$host = 'localhost:' . rand(8000,8060);
$server = proc_open(
- 'php -S localhost:8000 -q ' . dirname($_SERVER['PHP_SELF']) . '/it_url.testserver.php',
- array(0 => fopen('/dev/null', 'r'), 1 => fopen('/dev/null', 'w'), 2 => array('pipe', 'w')),
+ "php -S $host -q " . dirname($_SERVER['PHP_SELF']) . '/it_url.testserver.php',
+ array(0 => it::fopen('/dev/null', 'r'), 1 => it::fopen('/dev/null', 'w'), 2 => array('pipe', 'w')),
$pipes
);
register_shutdown_function(