Skip to content

Commit 585f046

Browse files
committed
Disable FS mount in volume only test
The test is checking that named volumes could be used. FS mount is not needed and there is no code testing anything around it. Signed-off-by: Arthur Sengileyev <[email protected]>
1 parent 5c5ecde commit 585f046

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

pkg/machine/e2e/basic_test.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,9 @@ var _ = Describe("run basic podman commands", func() {
100100
})
101101

102102
It("Single character volume mount", func() {
103-
// Get a tmp directory
104-
tDir, err := filepath.Abs(GinkgoT().TempDir())
105-
Expect(err).ToNot(HaveOccurred())
106103
name := randomString()
107104
i := new(initMachine).withImage(mb.imagePath).withNow()
108105

109-
// All other platforms have an implicit mount for the temp area
110-
if isVmtype(define.QemuVirt) {
111-
i.withVolume(tDir)
112-
}
113106
session, err := mb.setName(name).setCmd(i).run()
114107
Expect(err).ToNot(HaveOccurred())
115108
Expect(session).To(Exit(0))

0 commit comments

Comments
 (0)