Compare commits

...

No commits in common. "c8" and "c8s" have entirely different histories.
c8 ... c8s

9 changed files with 46 additions and 2 deletions

12
.gitignore vendored
View File

@ -1 +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

View File

@ -1 +0,0 @@
6e811ede779f2eac9d30950b6dc7abba61372262 SOURCES/ethtool-0.14.tar.gz

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (ethtool-0.14.tar.gz) = 1b211527cab50d012312476171897beed0885d5a37e5713e5ac2e9a57fcbf67b8e0983160d0f13da8804b04738f60095bef21ab127651cb87b4f0629bb89ccf7

View 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
View 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