python-linux-procfs/tests/scripts/run_tests.sh
John Kacur c29cebba82 Sync python-linux-procfs in rhel-10 with rhel-9.5
Add gating.yaml
Add tests dir
Resolves: RHEL-30433

Signed-off-by: John Kacur <jkacur@redhat.com>
2024-03-26 13:20:57 -04:00

19 lines
367 B
Bash

#!/usr/bin/bash
# make sure we have python-linux-procfs installed
if rpm -q --quiet python3-linux-procfs; then
:
else
sudo dnf install -y python3-linux-procfs
if [[ $? != 0 ]]; then
echo "install of python3-linux-procfs failed!"
exit 1
fi
fi
# see if pflags is installed and executable
pflags --help || exit 2
pflags || exit 3
exit 0