summaryrefslogtreecommitdiff
path: root/sapi/cli/tests/bug62294.phpt
blob: 04d0d8b60e4d77c0048d801516cecfa3dc0a670b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Bug #62294: register_shutdown_function() does not handle exit code correctly
--FILE--
<?php

$php = getenv('TEST_PHP_EXECUTABLE');
exec($php . ' -n ' . __DIR__ . '/bug62294.inc', $output, $exit_status);
var_dump($exit_status);

?>
--EXPECT--
int(255)