diff options
author | Remi Collet <remi@php.net> | 2020-08-21 14:41:35 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2020-08-21 14:41:35 +0200 |
commit | 8c57474e35fa1ae9c256ac224ea646673c9d404c (patch) | |
tree | 7d3e4b04011d4c1728fd016dec6cfe7ea4b6e83a /sapi/cli | |
parent | ff66e4945ef1936a02ea149e03925a9e01b606e0 (diff) | |
download | php-git-8c57474e35fa1ae9c256ac224ea646673c9d404c.tar.gz |
ensure installed ini don't interfere
Diffstat (limited to 'sapi/cli')
-rw-r--r-- | sapi/cli/tests/bug62294.phpt | 2 |
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); ?> |