This commit is contained in:
Xinchen Hui 2012-03-11 14:44:07 +00:00
parent 7059735b1d
commit 24603280d4

View File

@ -3,7 +3,7 @@ Bug #60978 (exit code incorrect)
--FILE--
<?php
$php = getenv('TEST_PHP_EXECUTABLE');
exec($php . '-n -r "exit(2);"', $output, $exit_code);
exec($php . ' -n -r "exit(2);"', $output, $exit_code);
echo $exit_code;
?>
--EXPECT--