summaryrefslogtreecommitdiff
path: root/sapi/cli
diff options
context:
space:
mode:
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);
?>