7cd6743ef8
Fetch tests from upstream. Includes tests enabled for RHIVOS on c9s. Resolves: RHEL-69441 Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
17 lines
405 B
Bash
17 lines
405 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -exo pipefail
|
|
|
|
if [[ "$(id -u)" -ne 0 ]];then
|
|
echo "Please run this script as superuser"
|
|
exit 1
|
|
fi
|
|
|
|
cat /etc/redhat-release
|
|
rpm -q conmon containers-common crun podman podman-tests
|
|
|
|
# Run crun specific podman tests
|
|
bats -t /usr/share/podman/test/system/030-run.bats
|
|
bats -t /usr/share/podman/test/system/075-exec.bats
|
|
bats -t /usr/share/podman/test/system/280-update.bats
|