-
Notifications
You must be signed in to change notification settings - Fork 28
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
OpenSlide Python read_bad_associated_image
test crashes on Windows Server 2022
#47
Comments
(I assume this is a problem with |
Both decoders use setjmp/longjmp for error handling, which has historically had problems on 64-bit Windows with MinGW. xref openslide/openslide-bin#47 Signed-off-by: Benjamin Gilbert <[email protected]>
Both decoders use setjmp/longjmp for error handling, which has historically had problems on 64-bit Windows with MinGW. Let's include it in our smoke tests. xref openslide/openslide-bin#47 Signed-off-by: Benjamin Gilbert <[email protected]>
It appears this is a longstanding problem with MinGW 64-bit builds, which try to pass SEH unwind info to |
The OpenSlide Python
test_read_bad_associated_image
crashes in CI on 64-bit Windows Server 2022 with:which is
STATUS_BAD_STACK
, invalid or unaligned stack during an unwind operation.This doesn't occur on Windows Server 2019. It occurs with both 20220806 and 20220803-nightly. It also occurs with 20171122, though the error there is less helpfully 0x80000003, a breakpoint exception.
The text was updated successfully, but these errors were encountered: