diff options
author | Christian Schneider | 2024-11-22 11:44:17 +0100 |
---|---|---|
committer | Christian Schneider | 2024-11-22 11:44:17 +0100 |
commit | 86278151d49dc090047ba659ca3a646d36b7a2b6 (patch) | |
tree | 532be0436e9758a2eca3859e3ab59563a8a60396 | |
parent | def7eaac8fc47b8e68b630a9530ed363cf159171 (diff) | |
download | itools-86278151d49dc090047ba659ca3a646d36b7a2b6.tar.gz itools-86278151d49dc090047ba659ca3a646d36b7a2b6.tar.bz2 itools-86278151d49dc090047ba659ca3a646d36b7a2b6.zip |
Do no load auto_prepend.php which causes problems on PHP 8.4 leading to test failures
-rw-r--r-- | test/it_url_server.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/it_url_server.php b/test/it_url_server.php index c832ee5..4c1a83c 100644 --- a/test/it_url_server.php +++ b/test/it_url_server.php @@ -1,7 +1,7 @@ <?php $host = 'localhost:' . rand(8000,8060); $server = proc_open( - "php -S $host -q " . dirname($_SERVER['PHP_SELF']) . '/it_url.testserver.php', + "php -d auto_prepend_file= -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 ); |