Compare commits
No commits in common. "c9-beta" and "c9s" have entirely different histories.
4
.gitignore
vendored
4
.gitignore
vendored
@ -1 +1,3 @@
|
|||||||
SOURCES/realtime-setup-2.5.tar.bz2
|
/realtime-setup-2.1.tar.bz2
|
||||||
|
/realtime-setup-2.2.tar.bz2
|
||||||
|
/realtime-setup-2.5.tar.bz2
|
||||||
|
@ -1 +0,0 @@
|
|||||||
3259594587a313c191a9958a3fe6399ee81ac81e SOURCES/realtime-setup-2.5.tar.bz2
|
|
6
gating.yaml
Normal file
6
gating.yaml
Normal 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}
|
49
remove-strip-of-realtime-entsk-and-generate-debuginf.patch
Normal file
49
remove-strip-of-realtime-entsk-and-generate-debuginf.patch
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
From 9fce13856a7c4dbd55fed37edd9d5a8102bd98de Mon Sep 17 00:00:00 2001
|
||||||
|
From: Clark Williams <williams@redhat.com>
|
||||||
|
Date: Wed, 11 May 2022 16:28:46 -0500
|
||||||
|
Subject: [PATCH] remove strip of realtime-entsk and generate debuginfo
|
||||||
|
|
||||||
|
Resolves: rhbz#2068534
|
||||||
|
|
||||||
|
Removed '-s' argument to install to prevent stripping of realtime-entsk
|
||||||
|
Removed %global definition of debug_package to '%{nil}' that explicitly
|
||||||
|
turned off debuginfo generation
|
||||||
|
|
||||||
|
Signed-off-by: Clark Williams <williams@redhat.com>
|
||||||
|
---
|
||||||
|
Makefile | 2 +-
|
||||||
|
realtime-setup.spec | 5 -----
|
||||||
|
2 files changed, 1 insertion(+), 6 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile b/Makefile
|
||||||
|
index f4a6f030c8a2..8e8a74d1e5d0 100644
|
||||||
|
--- a/Makefile
|
||||||
|
+++ b/Makefile
|
||||||
|
@@ -55,7 +55,7 @@ install:
|
||||||
|
install -m 755 -D realtime-setup.systemd $(DEST)/usr/bin/realtime-setup
|
||||||
|
install -m 644 -D realtime.conf $(DEST)/etc/security/limits.d/realtime.conf
|
||||||
|
install -m 644 -D realtime-entsk.service $(DEST)/usr/lib/systemd/system/realtime-entsk.service
|
||||||
|
- install -m 755 -D -s realtime-entsk $(DEST)/usr/sbin/realtime-entsk
|
||||||
|
+ install -m 755 -D realtime-entsk $(DEST)/usr/sbin/realtime-entsk
|
||||||
|
install -m 644 -D realtime-setup.service $(DEST)/usr/lib/systemd/system/realtime-setup.service
|
||||||
|
|
||||||
|
dist-git: tarball
|
||||||
|
diff --git a/realtime-setup.spec b/realtime-setup.spec
|
||||||
|
index 64c3f3a3fa52..402f66de24bf 100644
|
||||||
|
--- a/realtime-setup.spec
|
||||||
|
+++ b/realtime-setup.spec
|
||||||
|
@@ -18,11 +18,6 @@ Requires: tuned
|
||||||
|
Requires: tuned-profiles-realtime
|
||||||
|
Requires: systemd
|
||||||
|
|
||||||
|
-# disable generation of debuginfo packages for this package
|
||||||
|
-# the only executable from this package is realtime-entsk and it's not really
|
||||||
|
-# something that requires debugging.
|
||||||
|
-%global debug_package %{nil}
|
||||||
|
-
|
||||||
|
%description
|
||||||
|
Configure details useful for low-latency environments.
|
||||||
|
|
||||||
|
--
|
||||||
|
2.36.1
|
||||||
|
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
|||||||
|
SHA512 (realtime-setup-2.5.tar.bz2) = 6b912644f3c99868d31bb099aea922e78d7c289cf685e6a8b87bf7bcac027eb7617e68d932ba1f7219c358d4ddb1b9e3d11db334dd7b45282873c0da357b17e1
|
72
tests/scripts/run_tests.sh
Normal file
72
tests/scripts/run_tests.sh
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
|
||||||
|
# make sure we have rt-setup installed
|
||||||
|
if rpm -q --quiet realtime-setup; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
cat <<EOF > /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
|
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:
|
||||||
|
- realtime-setup
|
Loading…
Reference in New Issue
Block a user