mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-16 12:47:52 +00:00
test/e2e: skip userns auto uidmapping/gidmapping tests in remote mode
The uidmapping= and gidmapping= options with --userns=auto use
intermediate ID lookup functionality that was added in d5cf46e807
(after v4.4.1). The fix is too complex to backport as it moves
functions between packages and significantly refactors ID mapping
logic.
Skip these tests in remote mode for v4.4.1.
Signed-off-by: Lokesh Mandvekar <lsm5@redhat.com>
This commit is contained in:
parent
b8d5abe992
commit
bcbe17fb51
1 changed files with 2 additions and 0 deletions
|
|
@ -274,6 +274,7 @@ var _ = Describe("Podman UserNS support", func() {
|
|||
})
|
||||
|
||||
It("podman --userns=auto:uidmapping=", func() {
|
||||
SkipIfRemote("intermediate ID lookup in uidmapping not supported in v4.4.1, fixed by d5cf46e807")
|
||||
u, err := user.Current()
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
||||
|
|
@ -303,6 +304,7 @@ var _ = Describe("Podman UserNS support", func() {
|
|||
})
|
||||
|
||||
It("podman --userns=auto:gidmapping=", func() {
|
||||
SkipIfRemote("intermediate ID lookup in gidmapping not supported in v4.4.1, fixed by d5cf46e807")
|
||||
u, err := user.Current()
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue