summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schneider2019-08-19 18:08:25 +0200
committerChristian Schneider2019-08-19 18:08:36 +0200
commitb422951038a66713c18ec4d24ce71a13dd0756a6 (patch)
tree9f5f92faf16e05ab8fd8db5e022f245c9e8a538b
parent98333fca43bef66883b1a55a63e1e9a5723b3d0c (diff)
downloaditools-b422951038a66713c18ec4d24ce71a13dd0756a6.tar.gz
itools-b422951038a66713c18ec4d24ce71a13dd0756a6.tar.bz2
itools-b422951038a66713c18ec4d24ce71a13dd0756a6.zip
PHP 7.4 built-in web server is more noisy, make it quiet again
-rw-r--r--test/it_url_server.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/it_url_server.php b/test/it_url_server.php
index 3805a79..d8049b1 100644
--- a/test/it_url_server.php
+++ b/test/it_url_server.php
@@ -1,6 +1,6 @@
<?php
$server = proc_open(
- 'php -S localhost:8000 ' . dirname($_SERVER['PHP_SELF']) . '/it_url.testserver.php',
+ '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')),
$pipes
);