aboutsummaryrefslogtreecommitdiff
path: root/test/utils
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-03-16 17:23:50 -0400
committerGitHub <noreply@github.com>2022-03-16 17:23:50 -0400
commitb1d37a7e21bfb3e12af2e7cee25dc88ac4f148dd (patch)
tree6f14fd9263a1f221238b45b31f428decac52ba4b /test/utils
parentfa33f3527f14edbf7407ba3ba482ef839debfb39 (diff)
parent1387b5bd8a639fcc0c9f9e78cda2aee7bac61b7d (diff)
downloadpodman-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.go2
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, " ")))