diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-25 16:36:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 16:36:01 -0400 |
commit | 05bdb4139a02eb35220c23b8ae8fe355f6d91406 (patch) | |
tree | 59e3b673f018d25dde266b158c6b799c65c603f6 /pkg/machine/e2e/config_start.go | |
parent | 181c9d3ee3ad4820b9ae91f1f02faf7b9e65fc87 (diff) | |
parent | 833456e079c31111a15fedaa3ccd7f852e89e508 (diff) | |
download | podman-05bdb4139a02eb35220c23b8ae8fe355f6d91406.tar.gz podman-05bdb4139a02eb35220c23b8ae8fe355f6d91406.tar.bz2 podman-05bdb4139a02eb35220c23b8ae8fe355f6d91406.zip |
Merge pull request #13942 from baude/machinetests
Add podman machine test suite
Diffstat (limited to 'pkg/machine/e2e/config_start.go')
-rw-r--r-- | pkg/machine/e2e/config_start.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pkg/machine/e2e/config_start.go b/pkg/machine/e2e/config_start.go new file mode 100644 index 000000000..86b1721f8 --- /dev/null +++ b/pkg/machine/e2e/config_start.go @@ -0,0 +1,16 @@ +package e2e + +type startMachine struct { + /* + No command line args other than a machine vm name (also not required) + */ + cmd []string +} + +func (s startMachine) buildCmd(m *machineTestBuilder) []string { + cmd := []string{"machine", "start"} + if len(m.name) > 0 { + cmd = append(cmd, m.name) + } + return cmd +} |