diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2022-08-24 13:25:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 13:25:55 -0400 |
commit | 2b05f4a0e6c05e4f653d86156858b4dff51a81b9 (patch) | |
tree | 7f3a537e12dfc4fa53fd10b6ee05ae55df83ca48 | |
parent | 34d516840df73787d2359037e4a2ab51849e59eb (diff) | |
parent | ea67d84f5a18941671b61415927954e52efd0300 (diff) | |
download | podman-2b05f4a0e6c05e4f653d86156858b4dff51a81b9.tar.gz podman-2b05f4a0e6c05e4f653d86156858b4dff51a81b9.tar.bz2 podman-2b05f4a0e6c05e4f653d86156858b4dff51a81b9.zip |
Merge pull request #15459 from giuseppe/fix-test-comment
test: fix comment
-rw-r--r-- | test/e2e/run_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index c7a0b3f2b..b2840d544 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -1235,8 +1235,7 @@ USER mail`, BB) }) It("podman run --mount type=bind,bind-nonrecursive", func() { - // crun: mount `/` to `/host`: Invalid argument - SkipIfRootless("FIXME: rootless users are not allowed to mount bind-nonrecursive (Could this be a Kernel bug?") + SkipIfRootless("FIXME: rootless users are not allowed to mount bind-nonrecursive") session := podmanTest.Podman([]string{"run", "--mount", "type=bind,bind-nonrecursive,slave,src=/,target=/host", fedoraMinimal, "findmnt", "-nR", "/host"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) |