mirror of
https://github.com/containers/podman.git
synced 2025-06-19 16:33:24 +08:00
Semiperiodic cleanup of obsolete Skip()s
Found by my find-obsolete-skips script. Let's see which, if any, of these skipped tests can be reenabled. Some Skips are "this will never work", not "this is expected to work one day". Update the message on those to reflect that. Some were real bugs in the test framework. Fix those. And, joy of joys, some work today. Remove those skips. Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
@ -282,8 +282,8 @@ var _ = Describe("Podman run with volumes", func() {
|
||||
})
|
||||
|
||||
It("podman run with tmpfs named volume mounts and unmounts", func() {
|
||||
SkipIfRootless("FIXME: rootless podman mount requires you to be in a user namespace")
|
||||
SkipIfRemote("podman-remote does not support --volumes this test could be simplified to be tested on Remote.")
|
||||
SkipIfRootless("rootless podman mount requires you to be in a user namespace")
|
||||
SkipIfRemote("podman-remote does not support --volumes. This test could be simplified to be tested on Remote.")
|
||||
volName := "testvol"
|
||||
mkVolume := podmanTest.Podman([]string{"volume", "create", "--opt", "type=tmpfs", "--opt", "device=tmpfs", "--opt", "o=nodev", "testvol"})
|
||||
mkVolume.WaitWithDefaultTimeout()
|
||||
|
Reference in New Issue
Block a user