diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-16 17:23:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-16 17:23:50 -0400 |
commit | b1d37a7e21bfb3e12af2e7cee25dc88ac4f148dd (patch) | |
tree | 6f14fd9263a1f221238b45b31f428decac52ba4b /test/utils | |
parent | fa33f3527f14edbf7407ba3ba482ef839debfb39 (diff) | |
parent | 1387b5bd8a639fcc0c9f9e78cda2aee7bac61b7d (diff) | |
download | podman-b1d37a7e21bfb3e12af2e7cee25dc88ac4f148dd.tar.gz podman-b1d37a7e21bfb3e12af2e7cee25dc88ac4f148dd.tar.bz2 podman-b1d37a7e21bfb3e12af2e7cee25dc88ac4f148dd.zip |
Merge pull request #13450 from jwhonce/bz/2052697
Exit code change BZ #2052697
Diffstat (limited to 'test/utils')
-rw-r--r-- | test/utils/utils.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/utils/utils.go b/test/utils/utils.go index 14092a2a5..8fe45dca0 100644 --- a/test/utils/utils.go +++ b/test/utils/utils.go @@ -368,6 +368,7 @@ func CreateTempDirInTempDir() (string, error) { // SystemExec is used to exec a system command to check its exit code or output func SystemExec(command string, args []string) *PodmanSession { c := exec.Command(command, args...) + fmt.Println("Execing " + c.String() + "\n") session, err := Start(c, GinkgoWriter, GinkgoWriter) if err != nil { Fail(fmt.Sprintf("unable to run command: %s %s", command, strings.Join(args, " "))) @@ -379,6 +380,7 @@ func SystemExec(command string, args []string) *PodmanSession { // StartSystemExec is used to start exec a system command func StartSystemExec(command string, args []string) *PodmanSession { c := exec.Command(command, args...) + fmt.Println("Execing " + c.String() + "\n") session, err := Start(c, GinkgoWriter, GinkgoWriter) if err != nil { Fail(fmt.Sprintf("unable to run command: %s %s", command, strings.Join(args, " "))) |