rteval/tests/scripts/run_tests.sh
John Kacur 38c0e61dba Remove rteval -s as a gating test
Resolves: RHEL-131402
Signed-off-by: John Kacur <jkacur@redhat.com>
2025-11-26 17:06:44 -05: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