From 86278151d49dc090047ba659ca3a646d36b7a2b6 Mon Sep 17 00:00:00 2001
From: Christian Schneider
Date: Fri, 22 Nov 2024 11:44:17 +0100
Subject: Do no load auto_prepend.php which causes problems on PHP 8.4 leading
 to test failures

---
 test/it_url_server.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'test')

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
 );
-- 
cgit v1.2.3