From fba020dcf54d5442143dc18e736465b79cb63de3 Mon Sep 17 00:00:00 2001 From: John Kacur Date: Tue, 26 Mar 2024 13:13:12 -0400 Subject: [PATCH] Sync realtime-setup in rhel-10 with rhel-9.5 Add gating.yaml Add tests dir Resolves: RHEL-30448 Signed-off-by: John Kacur --- gating.yaml | 6 ++++ realtime-setup.spec | 7 +++- tests/scripts/run_tests.sh | 72 ++++++++++++++++++++++++++++++++++++++ tests/tests.yml | 11 ++++++ 4 files changed, 95 insertions(+), 1 deletion(-) create mode 100644 gating.yaml create mode 100644 tests/scripts/run_tests.sh create mode 100644 tests/tests.yml diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..648918d --- /dev/null +++ b/gating.yaml @@ -0,0 +1,6 @@ +--- !Policy +product_versions: + - rhel-9 +decision_context: osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/realtime-setup.spec b/realtime-setup.spec index e7d0736..cedfcf7 100644 --- a/realtime-setup.spec +++ b/realtime-setup.spec @@ -1,6 +1,6 @@ Name: realtime-setup Version: 2.4 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL-2.0-or-later Summary: Setup RT/low-latency environment details Source0: https://gitlab.com/rt-linux-tools/%{name}/-/archive/v%{version}/%{name}-%{version}.tar.bz2 @@ -73,6 +73,11 @@ Neither the slub script or realtime-entsk are active by default. %{_unitdir}/realtime-entsk.service %changelog +* Tue Mar 26 2024 John Kacur - 2.4-4 +- Add gating.yaml +- Add tests dir +Resolves: RHEL-30448 + * Fri Jan 26 2024 Fedora Release Engineering - 2.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild diff --git a/tests/scripts/run_tests.sh b/tests/scripts/run_tests.sh new file mode 100644 index 0000000..81097b7 --- /dev/null +++ b/tests/scripts/run_tests.sh @@ -0,0 +1,72 @@ +#!/usr/bin/bash + +# make sure we have rt-setup installed +if rpm -q --quiet realtime-setup; then + : +else + cat < /etc/yum.repos.d/centos-stream-rt.repo +[centos-stream-rt] +name=CentOS Stream latest Realtime compose +baseurl=http://composes.stream.centos.org/test/latest-CentOS-Stream/compose/RT/\$basearch/os/ +enabled=1 +gpgcheck=0 +metadata_expire=6h +skip_if_unavailable=False +EOF + sudo dnf install -y realtime-setup + if [[ $? != 0 ]]; then + echo "install of realtime-setup failed!" + exit 1 + fi +fi + +# check bins +for p in realtime-setup slub_cpu_partial_off; do + prog=/usr/bin/$p + if [[ ! -e $prog ]]; then + echo "$prog not found" + exit 2 + fi + if [[ ! -x $prog ]]; then + echo "$prog not executable!" + exit 3 + fi +done + +# check system bins +for p in kernel-is-rt realtime-entsk; do + prog=/usr/sbin/$p + if [[ ! -e $prog ]]; then + echo "$prog not found" + exit 4 + fi + if [[ ! -x $prog ]]; then + echo "$prog not executable!" + exit 5 + fi +done + +# check /etc files +if [[ ! -e /etc/security/limits.d/realtime.conf ]]; then + echo "/etc/security/limits.d/realtime.conf: not found" + exit 6 +fi +if [[ ! -e /etc/sysconfig/realtime-setup ]]; then + echo "/etc/sysconfig/realtime-setup: not found" + exit 7 +fi +if [[ ! -e /etc/udev/rules.d/99-rhel-rt.rules ]]; then + echo "/etc/udev/rules.d/99-rhel-rt.rules: not found" + exit 8 +fi + +# check systemd service files +for i in realtime-entsk realtime-setup; do + serv="/usr/lib/systemd/system/$i.service" + if [[ ! -e $serv ]]; then + echo "$serv: not found" + exit 9 + fi +done + +exit 0 diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..04882fc --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,11 @@ +- hosts: localhost + roles: + - role: standard-test-basic + tags: + - classic + tests: + - simple: + dir: scripts + run: ./run_tests.sh + required_packages: + - realtime-setup