Compare commits

...

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

7 changed files with 49 additions and 3 deletions

7
.gitignore vendored
View File

@ -1 +1,6 @@
SOURCES/linux-5.18.1.tar.xz
*.swp
clog
/linux-5.1.tar.xz
/linux-5.7.tar.xz
/linux-5.13.2.tar.xz
/linux-5.18.1.tar.xz

View File

@ -1 +0,0 @@
e952cf4cc50c7299117b7346671817be47c0a945 SOURCES/linux-5.18.1.tar.xz

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: osci.brew-build.tier0.functional}

View File

@ -1,6 +1,6 @@
Name: rteval-loads
Version: 1.6
Release: 2%{?dist}
Release: 3%{?dist}
Summary: Source files for rteval loads
Group: Development/Tools
License: GPLv2
@ -26,6 +26,10 @@ install -m 644 %{SOURCE0} ${RPM_BUILD_ROOT}/usr/share/rteval/loadsource
%{_datadir}/rteval/loadsource/*
%changelog
* Thu Jun 16 2022 John Kaucr <jkacur@redhat.com> - 1.6-2
- Rebuild
Resolves: rhbz#2093059
* Fri Jun 03 2022 John Kacur <jkacur@redhat.com> - 1.6-2
- Upgrade run_tests.sh with the new kernel version
Resolves: rhbz#2093059

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (linux-5.18.1.tar.xz) = 1d3f676403b7f21c6790cac568e9655f95012c250a7d0f35cb8223c8a36ce561b414a25cd85be6892607facb617247d4983f4be426388dd6c6817991a6da928d

View File

@ -0,0 +1,20 @@
#!/usr/bin/bash
# make sure we have rteval installed
if rpm -q --quiet rteval-loads; then
:
else
sudo dnf install -y rteval-loads
if [[ $? != 0 ]]; then
echo "install of rteval failed!"
exit 1
fi
fi
# check that the tarball is in place
if [[ ! -f /usr/share/rteval/loadsource/linux-5.18.1.tar.xz ]]; then
echo "No load tarball found!"
exit 3
fi
exit 0

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:
- rteval-loads