-
-
Notifications
You must be signed in to change notification settings - Fork 703
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
test_raise_error fails with musl libc #920
Comments
kurtmckee
added a commit
to kurtmckee/pr-watchdog
that referenced
this issue
Oct 11, 2022
BoboTiG
pushed a commit
that referenced
this issue
Oct 12, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The test makes the assumption that getting the errno text for
-1
will returnUnknown error -1
, but this is not defined anywhere in POSIX or C standards and other libc implementations have different return values for this. musl libc returnsNo error information
.I would suggest to remove the test variant or loosen the expectation of a specific error text.
The text was updated successfully, but these errors were encountered: