]> granicus.if.org Git - php/commitdiff
ensure installed ini don't interfere
authorRemi Collet <remi@php.net>
Fri, 21 Aug 2020 12:41:35 +0000 (14:41 +0200)
committerRemi Collet <remi@php.net>
Fri, 21 Aug 2020 12:41:35 +0000 (14:41 +0200)
sapi/cli/tests/bug62294.phpt

index b300729939f07eadd47716ad0d28c14c4b3df3dc..04d0d8b60e4d77c0048d801516cecfa3dc0a670b 100644 (file)
@@ -4,7 +4,7 @@ Bug #62294: register_shutdown_function() does not handle exit code correctly
 <?php
 
 $php = getenv('TEST_PHP_EXECUTABLE');
-exec($php . ' ' . __DIR__ . '/bug62294.inc', $output, $exit_status);
+exec($php . ' -n ' . __DIR__ . '/bug62294.inc', $output, $exit_status);
 var_dump($exit_status);
 
 ?>