-
-
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
test_tar test_add_dir_getmember fails if uid/gid is larger than 16777215 #95675
Comments
@colesbury |
I'll take it :) |
uyw4687
added a commit
to uyw4687/cpython
that referenced
this issue
Feb 24, 2023
uyw4687
added a commit
to uyw4687/cpython
that referenced
this issue
Feb 24, 2023
corona10
pushed a commit
that referenced
this issue
Feb 25, 2023
Co-authored-by: Seonkyo Ok <seonkyo.ok@linecorp.com>
corona10
pushed a commit
that referenced
this issue
Feb 25, 2023
corona10
pushed a commit
that referenced
this issue
Feb 25, 2023
Thank you @uyw4687! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug report
The
test_add_dir_getmember
added in #30283 fails if the current user's uid or gid is larger than 16777215 because of limitations of UStar format.Note that the other test cases don't have this problem.
This test should either avoid depending on the current user's uid/gid (such as by using an explicit uid/gid) or be skipped if the current uid/gid is 8**8 or larger.
For example,
Will use 100 as the uid and gid instead of the current user's uid/gid.
Linked PRs
The text was updated successfully, but these errors were encountered: