diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-10-10 09:24:17 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2018-10-12 09:34:23 -0700 |
commit | 40cb7568017a36b411801608a32cdd8502287924 (patch) | |
tree | 1f5bbccd42e843d223eaa5cfa08133253d5d1673 /contrib/python/podman/test/test_runner.sh | |
parent | b0b6dc40bd916698f87bc68f7b4b603582e93ef2 (diff) | |
download | podman-40cb7568017a36b411801608a32cdd8502287924.tar.gz podman-40cb7568017a36b411801608a32cdd8502287924.tar.bz2 podman-40cb7568017a36b411801608a32cdd8502287924.zip |
Add support for pod commands
* Add support for pod -- create, inspect, kill, pause, ps, rm,
restart, start, stop, top, unpause
* Update pylintrc to better reflect pep8 code standards
* Fix various pylint reported errors
* Refactor code that determines screen width to no longer
require initializing curses. Improved start up time and
pushing data blob down ssh tunnel.
* Correct pod-create man page, cgroupparent not boolean
* Abort integration tests if podman service fails to start
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'contrib/python/podman/test/test_runner.sh')
-rwxr-xr-x | contrib/python/podman/test/test_runner.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/contrib/python/podman/test/test_runner.sh b/contrib/python/podman/test/test_runner.sh index ce518e7ed..1b7e0a85e 100755 --- a/contrib/python/podman/test/test_runner.sh +++ b/contrib/python/podman/test/test_runner.sh @@ -119,15 +119,18 @@ if [[ -n $VERBOSE ]]; then fi PODMAN="podman $PODMAN_ARGS" -cat >/tmp/test_podman.output <<-EOT +cat <<-EOT |tee /tmp/test_podman.output $($PODMAN --version) $PODMAN varlink --timeout=0 ${PODMAN_HOST} ========================================== EOT # Run podman in background without systemd for test purposes -set -x $PODMAN varlink --timeout=0 ${PODMAN_HOST} >>/tmp/test_podman.output 2>&1 & +if [[ $? != 0 ]]; then + echo 1>&2 Failed to start podman + showlog /tmp/test_podman.output +fi if [[ -z $1 ]]; then export PYTHONPATH=. @@ -139,7 +142,6 @@ else RETURNCODE=$? fi -set +x pkill -9 podman pkill -9 conmon |