Files
podman/pkg/machine/e2e/config_unix_test.go
Brent Baude 1ebd507fbf Fix regression in e2e machine test suite
A simple regression was introduced to the test suite that overrode the
default image for hyperv testing.

Signed-off-by: Brent Baude <bbaude@redhat.com>
2023-12-07 21:06:46 -06:00

19 lines
379 B
Go

//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
package e2e_test
import (
"os/exec"
"github.com/containers/podman/v4/pkg/machine"
)
func getDownloadLocation(p machine.VirtProvider) string {
return getFCOSDownloadLocation(p)
}
func pgrep(n string) (string, error) {
out, err := exec.Command("pgrep", "gvproxy").Output()
return string(out), err
}