Files
podman/pkg/machine/e2e/config_darwin_test.go
Ashley Cui 41f945fc24 machine: Add -all-providers flag to machine list
Podman machine list now supports a new option, --all-providers, which lists all machines from all providers.

Signed-off-by: Ashley Cui <acui@redhat.com>
2024-08-28 13:40:50 -04:00

15 lines
290 B
Go

package e2e_test
import "github.com/containers/podman/v5/pkg/machine/define"
const podmanBinary = "../../../bin/darwin/podman"
func getOtherProvider() string {
if isVmtype(define.AppleHvVirt) {
return "libkrun"
} else if isVmtype(define.LibKrun) {
return "applehv"
}
return ""
}