Replace whole repo with latest content from branch rhel-8.8.0
Content corresponds with RHEL dist-git commit 202eebc
This commit is contained in:
parent
b741b74753
commit
595b793146
11
.gitignore
vendored
11
.gitignore
vendored
@ -1,2 +1,11 @@
|
|||||||
SOURCES/ethtool-0.14.tar.gz
|
python-ethtool-0.3.tar.bz2
|
||||||
|
python-ethtool-0.4.tar.bz2
|
||||||
|
python-ethtool-0.5.tar.bz2
|
||||||
|
/python-ethtool-0.6.tar.bz2
|
||||||
|
/python-ethtool-0.7.tar.bz2
|
||||||
|
/python-ethtool-0.8.tar.bz2
|
||||||
|
/python-ethtool-0.9.tar.bz2
|
||||||
|
/python-ethtool-0.10.tar.bz2
|
||||||
|
/python-ethtool-0.11.tar.bz2
|
||||||
|
/ethtool-0.13.tar.gz
|
||||||
/ethtool-0.14.tar.gz
|
/ethtool-0.14.tar.gz
|
||||||
|
|||||||
17
tests/scripts/run_tests.sh
Normal file
17
tests/scripts/run_tests.sh
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
# make sure we have python3-ethtool installed
|
||||||
|
if rpm -q --quiet python3-ethtool; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
sudo dnf install -y python3-ethtool
|
||||||
|
if [[ $? != 0 ]]; then
|
||||||
|
echo "install of python3-ethtool failed!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# See if python3-ethtool's pethtool is installed,executable and help works.
|
||||||
|
pethtool --help 2>> /dev/null
|
||||||
|
if [[ $? != 0 ]]; then
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
11
tests/tests.yml
Normal file
11
tests/tests.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: standard-test-basic
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
tests:
|
||||||
|
- simple:
|
||||||
|
dir: scripts
|
||||||
|
run: ./run_tests.sh
|
||||||
|
required_packages:
|
||||||
|
- python3-ethtool
|
||||||
Loading…
Reference in New Issue
Block a user