summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schneider2024-11-22 11:44:17 +0100
committerChristian Schneider2024-11-22 11:44:17 +0100
commit86278151d49dc090047ba659ca3a646d36b7a2b6 (patch)
tree532be0436e9758a2eca3859e3ab59563a8a60396
parentdef7eaac8fc47b8e68b630a9530ed363cf159171 (diff)
downloaditools-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.php2
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
);