wsl: machine tests

WSL does not use ignition therefore the test for the file is invalid.

Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
Brent Baude
2023-09-25 16:21:35 -05:00
parent 7133f5d388
commit cc4917d81d

View File

@ -4,6 +4,7 @@ import (
"fmt"
"os"
"github.com/containers/podman/v4/pkg/machine"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
. "github.com/onsi/gomega/gexec"
@ -111,8 +112,12 @@ var _ = Describe("podman machine rm", func() {
Expect(err).ToNot(HaveOccurred())
_, err = os.Stat(pubkey)
Expect(err).ToNot(HaveOccurred())
// WSL does not use ignition
if testProvider.VMType() != machine.WSLVirt {
_, err = os.Stat(ign)
Expect(err).ToNot(HaveOccurred())
}
_, err = os.Stat(img)
Expect(err).ToNot(HaveOccurred())