-
-
Notifications
You must be signed in to change notification settings - Fork 30.7k
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
gh-128116: Skip test_socket VSOCK testStream() on PermissionError #128120
Conversation
vstinner
commented
Dec 20, 2024
•
edited by bedevere-app
bot
Loading
edited by bedevere-app
bot
- Issue: [PPC64LE buildbots] test_socket: VSOCK testStream(): recv fails with EACCES on Fedora 41 #128116
!buildbot PPC64LE Fedora Stable PR |
I only found two lines in Linux net/vmw_vsock/ using
Example: if (port <= LAST_RESERVED_PORT && !capable(CAP_NET_BIND_SERVICE))
return -EACCES; But the Python test uses port 1234 which is greater than LAST_RESERVED_PORT (1023). |
Thanks @vstinner for the PR 🌮🎉.. I'm working now to backport this PR to: 3.13. |
…or (pythonGH-128120) (cherry picked from commit cbfe302) Co-authored-by: Victor Stinner <[email protected]>
GH-128123 is a backport of this pull request to the 3.13 branch. |
Thanks @vstinner for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
…or (pythonGH-128120) (cherry picked from commit cbfe302) Co-authored-by: Victor Stinner <[email protected]>
GH-128124 is a backport of this pull request to the 3.12 branch. |