summaryrefslogtreecommitdiff
path: root/sapi/cli
diff options
context:
space:
mode:
authorRemi Collet <remi@php.net>2020-08-21 14:41:35 +0200
committerRemi Collet <remi@php.net>2020-08-21 14:41:35 +0200
commit8c57474e35fa1ae9c256ac224ea646673c9d404c (patch)
tree7d3e4b04011d4c1728fd016dec6cfe7ea4b6e83a /sapi/cli
parentff66e4945ef1936a02ea149e03925a9e01b606e0 (diff)
downloadphp-git-8c57474e35fa1ae9c256ac224ea646673c9d404c.tar.gz
ensure installed ini don't interfere
Diffstat (limited to 'sapi/cli')
-rw-r--r--sapi/cli/tests/bug62294.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/tests/bug62294.phpt b/sapi/cli/tests/bug62294.phpt
index b300729939..04d0d8b60e 100644
--- a/sapi/cli/tests/bug62294.phpt
+++ b/sapi/cli/tests/bug62294.phpt
@@ -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);
?>