2018-11-13 13:28:26 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Simple podman tests
|
|
|
|
#
|
|
|
|
|
2019-01-18 17:59:24 +00:00
|
|
|
rm -f /tmp/test.log /tmp/test.debug.log
|
2018-11-13 13:28:26 +00:00
|
|
|
|
2019-01-18 17:59:24 +00:00
|
|
|
# Log program versions
|
|
|
|
rpm -q podman podman-tests >/tmp/test.debug.log
|
2018-11-13 13:28:26 +00:00
|
|
|
|
2019-01-18 17:59:24 +00:00
|
|
|
bats /usr/share/podman/test/system &> /tmp/test.log
|
2018-11-13 13:28:26 +00:00
|
|
|
|
2019-01-18 17:59:24 +00:00
|
|
|
echo "bats completed with status $?" >>/tmp/test.debug.log
|