exit statuses should be in the range 0 to 254#6648
exit statuses should be in the range 0 to 254#6648sasezaki wants to merge 2 commits intovimeo:masterfrom
exit statuses should be in the range 0 to 254#6648Conversation
exit statuses should be in the range 0 to 254exit statuses should be in the range 0 to 254
37827a8 to
d1f457c
Compare
|
Seems correct :) I'm always a bit cautious about changing parameter types to non-standard types because it has the potential to bother a lot of people but I don't expect exit to be used a lot with dynamic params |
|
Since Looks good to me otherwise. |
|
Great thanks for review and feedback !
I got it! I just understand why my locally test was not reported as an error. Then, in this PR, I would to try update ExitAnalyzer... |
exit statuses should be in the range 0 to 254exit statuses should be in the range 0 to 254
|
Interesting, it seems that PHPUnit uses 255 as an error code. It doesn't seem to cause problems and it returns 255 to the caller: https://3v4l.org/b1tnm I'd be inclined to allow it, even if the doc says it's supposed to be reserved... |
👍 |
yep, PHPUnit seems introduced
Agreed. I would like to investigate php-src if I have time, ... currently, it seems better to forgo this change. |
from manual.
actual PHP behaviors is like this.
Note: This is my first change for CallMap, so if anything missing, please let me know.