Compare commits

...

No commits in common. "c9-beta" and "c9s" have entirely different histories.
c9-beta ... c9s

10 changed files with 31 additions and 2 deletions

4
.gitignore vendored
View File

@ -1 +1,3 @@
SOURCES/wireless-regdb-2023.09.01.tar.xz
/wireless-regdb-2020.04.29.tar.xz
/wireless-regdb-2020.11.20.tar.xz
/wireless-regdb-2023.09.01.tar.xz

View File

@ -1 +1 @@
7497261fb28a7a64586dc4edee4e8f85d70a1341 SOURCES/wireless-regdb-2023.09.01.tar.xz
7497261fb28a7a64586dc4edee4e8f85d70a1341 wireless-regdb-2023.09.01.tar.xz

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-9
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (wireless-regdb-2023.09.01.tar.xz) = e88b4ea8b40f916f4e6c7fea8ea1b9fc7c6ece755d6ce24a8f43f66840f68e9971938707b0d94c87a2aa00dfe7f5734df469e0e088a82fe544a031b1d7422596

11
tests/scripts/run_tests.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
#
# Begin wih a very simple, "does the file exist?" check...
#
if [ ! -f /usr/lib/firmware/regulatory.db ]
then
exit 1 # no regulatory database installed, so fail
fi
exit 0 # got here? indicate success...

9
tests/tests.yml Normal file
View File

@ -0,0 +1,9 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- simple:
dir: scripts
run: ./run_tests.sh