podman-build/pkg/machine/e2e/config_darwin_test.go
2025-10-11 12:30:35 +09: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 ""
}