diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-04-26 16:06:02 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-04-27 14:11:13 +0000 |
commit | 93eb21d156e387f1fd13bfa7068915459edd0a5a (patch) | |
tree | 6940128a5551fc20aed1d868f7bb2068dcfd0bc9 /test | |
parent | 32db403b5e4fdb96e727e8cda3922d235ad63aa4 (diff) | |
download | podman-93eb21d156e387f1fd13bfa7068915459edd0a5a.tar.gz podman-93eb21d156e387f1fd13bfa7068915459edd0a5a.tar.bz2 podman-93eb21d156e387f1fd13bfa7068915459edd0a5a.zip |
Remove systemd-cat support
- CI does not support systemd-cat
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Closes: #683
Approved by: rhatdan
Diffstat (limited to 'test')
-rwxr-xr-x | test/varlink/run_varlink_tests.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/varlink/run_varlink_tests.sh b/test/varlink/run_varlink_tests.sh index 8372de10b..fe82b39ef 100755 --- a/test/varlink/run_varlink_tests.sh +++ b/test/varlink/run_varlink_tests.sh @@ -23,12 +23,11 @@ export PODMAN_HOST="unix:${TMPSTORAGE}/podman/io.projectatomic.podman" # Need a location to store the podman socket mkdir -p ${TMPSTORAGE}/podman -systemd-cat -t podman -p notice bin/podman --version +bin/podman --version set -x # Run podman in background without systemd for test purposes -systemd-cat -t podman -p notice \ - bin/podman --storage-driver=vfs --root=${TMPSTORAGE}/crio \ +bin/podman --storage-driver=vfs --root=${TMPSTORAGE}/crio \ --runroot=${TMPSTORAGE}/crio-run varlink ${PODMAN_HOST} & ${PYTHON} -m unittest discover -s test/varlink/ $@ |