Compare commits

..

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

11 changed files with 44 additions and 4 deletions

4
.gitignore vendored
View File

@ -1,2 +1,2 @@
SOURCES/gpsd-3.25.tar.gz
SOURCES/scons-4.5.2.tar.gz
/gpsd-3.25.tar.gz
/scons-4.5.2.tar.gz

View File

@ -1,2 +0,0 @@
81965943f81484da80d8adb0547572fe9f0e8ebc SOURCES/gpsd-3.25.tar.gz
61b59e617c739051f48cdd45b7638d8831b13d73 SOURCES/scons-4.5.2.tar.gz

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}

2
sources Normal file
View File

@ -0,0 +1,2 @@
SHA512 (gpsd-3.25.tar.gz) = 0684cbd30defa1a328898589e1d61b2431462a774aff56c588bd00c1fbd92ac94cf6fc1f2b981debac78c34ab09fa24f48ed6334f3ecd09e6b8f5faa92ae1085
SHA512 (scons-4.5.2.tar.gz) = aa788d9365a8b5119fef404869562f61cb854be7ceadb5f5d47523e262c07f93ea7476166b577edec25339a64dc6a1f4a6f391fa5aeeab3f086a6659fc72e1ce

27
tests/smoke/runtest.sh Executable file
View File

@ -0,0 +1,27 @@
#!/bin/bash
set -e
r=0
executables=$(rpm -ql gpsd-minimal gpsd-minimal-clients | grep -E '/s?bin/')
for b in $executables; do
case "$(basename "$b")" in
gpsdebuginfo)
continue;;
zerk)
h="-h";;
*)
h="--help";;
esac
if "$b" "$h" |& grep -qi '^usage *:'; then
echo "$b OK"
else
echo "$b FAILED"
"$b" "$h" || :
r=1
fi
done
exit $r

7
tests/tests.yml Normal file
View File

@ -0,0 +1,7 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- smoke