diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-09-02 03:01:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-02 03:01:19 -0400 |
commit | 4207d959a68c1ee2b805b7113838580c14f4bbc6 (patch) | |
tree | 00990a26e16965a735f9c1b2a7645371a917a8b8 /test/system/260-sdnotify.bats | |
parent | c36322382a5cfaa50131f45ffb723b738f3b85ce (diff) | |
parent | e3c7e02a0e1f0f224071940f809474a0593c6949 (diff) | |
download | podman-4207d959a68c1ee2b805b7113838580c14f4bbc6.tar.gz podman-4207d959a68c1ee2b805b7113838580c14f4bbc6.tar.bz2 podman-4207d959a68c1ee2b805b7113838580c14f4bbc6.zip |
Merge pull request #11395 from edsantiago/bats
System tests: add cleanup & debugging output
Diffstat (limited to 'test/system/260-sdnotify.bats')
-rw-r--r-- | test/system/260-sdnotify.bats | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/system/260-sdnotify.bats b/test/system/260-sdnotify.bats index b5d3f9b86..0dae569a8 100644 --- a/test/system/260-sdnotify.bats +++ b/test/system/260-sdnotify.bats @@ -157,6 +157,10 @@ function _assert_mainpid_is_conmon() { # With container, READY=1 isn't necessarily the last message received; # just look for it anywhere in received messages run cat $_SOCAT_LOG + # The 'echo's help us debug failed runs + echo "socat log:" + echo "$output" + is "$output" ".*READY=1" "received READY=1 through notify socket" _assert_mainpid_is_conmon "${lines[0]}" |