-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Randomly failing string tests #71
Comments
Nothing was changed between the runs.
|
There exists a memory corruption bug in the string code somewhere. What's happening is every once in a while a segfault is issued (though not often) and when it is the test fails with no output. |
Thanks for explaining. I encountered this only on this machine... If a wonder comes by i fix it :P |
Code like this should be able to reliably segfault (or at least it does for me): <?php
$test = 'a';
for ($i = 0; $i < 1000; $i++) {
$test = $test . 'a';
}
echo $test;
echo "\n"; |
On my windows dev setup (standard git bash+docker) i get random crashes in the string tests... always the same but only in 10% of the runs.
https://gist.github.com/PurHur/4d4bb8548d4adfd5afa093fffc6c8a4b
Is that a problem at all? Or a cygwin/windows thing? I never saw that on debian machines.
The text was updated successfully, but these errors were encountered: