You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fatal error: Class Test2 contains 1 abstract method and must therefore be declared abstract or implement the remaining method (Test::foo) in %s on line 5
Fatal error: Class Test2 contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Test::foo) in %s on line 5
The reason will be displayed to describe this comment to others. Learn more.
@cmb69 Sorry to ping you yet again. Do you have any clue why this segfaults on Windows? The actual change is here: 2d068c4de7ef3f (It's unrelated to this commit, really)
The reason will be displayed to describe this comment to others. Learn more.
This is not a segfault, but rather C00000FF (STATUS_BAD_FUNCTION_TABLE). Likely a JIT issue; test worked for the PHP 8.4.0RC3 builds (failed only due to wrong error message). I'll have a closer look soon.
dded6fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cmb69 Sorry to ping you yet again. Do you have any clue why this segfaults on Windows? The actual change is here:
2d068c4de7ef3f (It's unrelated to this commit, really)dded6fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not a segfault, but rather C00000FF (STATUS_BAD_FUNCTION_TABLE). Likely a JIT issue; test worked for the PHP 8.4.0RC3 builds (failed only due to wrong error message). I'll have a closer look soon.
dded6fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you Christoph!
dded6fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is almost certainly another instance of #15709. For now, I suggest to XFAIL (like 6d59620).
dded6fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cmb69 Thank you for your analysis! Do you want to add it or should I?
dded6fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can do it. Investigating more closely on that issue anyway.
dded6fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bdde797
dded6fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you Christoph!