re-import sources as agreed with the maintainer
This commit is contained in:
parent
9fb0280214
commit
4bfdaafcc3
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,2 +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
|
||||
|
@ -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
|
||||
|
20
tests/scripts/run_tests.sh
Normal file
20
tests/scripts/run_tests.sh
Normal 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
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:
|
||||
- rteval-loads
|
Loading…
Reference in New Issue
Block a user