kernelshark/tests/scripts/run_tests.sh
Qiao Zhao a584e9b66c initial rhel-10 gating tests
According to https://issues.redhat.com/browse/RHELMISC-3810

Signed-off-by: Qiao Zhao <qzhao@redhat.com>
2024-05-15 13:50:19 +08:00

20 lines
369 B
Bash
Executable File

#!/usr/bin/bash
if rpm -q --quiet kernelshark; then
:
else
sudo dnf install -y kernelshark
if [[ $? != 0 ]]; then
echo "install of kernelshark failed!"
exit 1
fi
fi
echo "kernelshark is GUI tool, just check the installation files"
if [[ ! -f /usr/bin/kernelshark ]]; then
echo "/usr/bin/kernelshark not found!"
exit 2
fi
exit 0