From 8ab0abbb06b310707eee0a5ece0f9fb0bac8d234 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Mon, 6 Jul 2020 12:56:52 -0400 Subject: Fix bug where `podman mount` didn't error as rootless We require that rootless `podman mount` be run inside a shell spawned by `podman unshare` (which gives us a mount namespace which actually lets other commands use the mounted filesystem). The fix is simple - we need to mark the command as requiring the rootless user namespace not be configured, so we can test for it later as part of the mount code and error if we needed to make one. Disable rootless tests as part of this - they were never expected to work. Fixes #6856 Signed-off-by: Matthew Heon --- test/e2e/mount_test.go | 1 + 1 file changed, 1 insertion(+) (limited to 'test/e2e') diff --git a/test/e2e/mount_test.go b/test/e2e/mount_test.go index dd74f245e..657daedef 100644 --- a/test/e2e/mount_test.go +++ b/test/e2e/mount_test.go @@ -18,6 +18,7 @@ var _ = Describe("Podman mount", func() { ) BeforeEach(func() { + SkipIfRootless() tempdir, err = CreateTempDirInTempDir() if err != nil { os.Exit(1) -- cgit v1.2.3-54-g00ecf