-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
tests/int: fix wrt busybox's nogroup->nobody change #2580
Merged
Merged
Conversation
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
This test started to fail, as it expected the output from `id` to be uid=1000 gid=1000 groups=100(users),65534(nogroup) while the actual output is now uid=1000 gid=1000 groups=100(users),65534(nobody) Apparently, busybox image changed group name. As we're only interested in ids, not names, and to fix the test, let's use `id -G`. Signed-off-by: Kir Kolyshkin <[email protected]>
@AkihiroSuda @mrunalp PTAL |
Found while looking at CI for #2580 |
mrunalp
previously approved these changes
Sep 9, 2020
@AkihiroSuda ptal |
Another failure caused by the same change:
|
These tests expect group name to be "nogroup", while recent busybox changed that to "nobody". Use numeric uids/gids to fix. Signed-off-by: Kir Kolyshkin <[email protected]>
kolyshkin
changed the title
tests/int: fix runc exec --preserve-fds
tests/int: fix wrt busybox's nogroup->nobody change
Sep 9, 2020
AkihiroSuda
approved these changes
Sep 9, 2020
mrunalp
approved these changes
Sep 9, 2020
This was referenced Sep 9, 2020
I also hit the same issue, it's nobody not nogroup. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Apparently, newer busybox image changed "nogroup" group name to "nobody",
breaking a few test cases that depended on the name.
Fix those tests by switching to numeric IDs.
1. tests/int: fix runc exec --preserve-fds
This test started to fail, as it expected the output from
id
to bewhile the actual output is now
Apparently, busybox image changed group name.
As we're only interested in ids, not names, and to fix the test,
let's use
id -G
.2. tests/int/dev.bats: fixes for new busybox
These tests expect group name to be "nogroup", while recent busybox
changed that to "nobody".
Use numeric uids/gids to fix.