rteval/tests/scripts/run_tests.sh
John Kacur beb58fdc49 rteval: Add gating tests
Add missing gating tests for rhel-8.9

Resolves: rhbz#2213609
jiraProject == RHELPLAN-159326

Signed-off-by: John Kacur <jkacur@redhat.com>
2023-06-08 13:59:43 -04:00

21 lines
267 B
Bash

#!/usr/bin/bash
# make sure we have rteval installed
if rpm -q --quiet rteval; then
:
else
sudo dnf install -y rteval
if [[ $? != 0 ]]; then
echo "install of rteval failed!"
exit 1
fi
fi
rteval --help
if [[ $? != 0 ]]; then
exit 2
fi
exit 0