Compare commits
13 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fb8cbc4ca1 | ||
|
|
25c3a8a9ee | ||
|
|
a86589621c | ||
|
|
0e1095a6f0 | ||
|
|
6babfc993d | ||
|
|
563e064099 | ||
|
|
a2acd0ef69 | ||
|
|
9da7886ec7 | ||
|
|
12ec99ea75 | ||
|
|
c44e2282ad | ||
|
|
89ecffb131 | ||
|
|
548bb8251a | ||
|
|
dafac0d86b |
7 changed files with 46 additions and 15 deletions
1
.fmf/version
Normal file
1
.fmf/version
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
1
|
||||||
35
omping.spec
35
omping.spec
|
|
@ -1,6 +1,6 @@
|
||||||
Name: omping
|
Name: omping
|
||||||
Version: 0.0.4
|
Version: 0.0.4
|
||||||
Release: 25%{?dist}
|
Release: 35%{?dist}
|
||||||
Summary: Utility to test IP multicast functionality
|
Summary: Utility to test IP multicast functionality
|
||||||
License: ISC
|
License: ISC
|
||||||
URL: https://github.com/jfriesse/omping
|
URL: https://github.com/jfriesse/omping
|
||||||
|
|
@ -8,13 +8,14 @@ Source0: https://github.com/jfriesse/%{name}/releases/download/%{version}/%{name
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
|
BuildRequires: git
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Omping (Open Multicast Ping) is tool to test IP multicast functionality
|
Omping (Open Multicast Ping) is tool to test IP multicast functionality
|
||||||
primarily in local network.
|
primarily in local network.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -S git_am
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%set_build_flags
|
%set_build_flags
|
||||||
|
|
@ -30,6 +31,36 @@ primarily in local network.
|
||||||
%{_mandir}/man8/*
|
%{_mandir}/man8/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-35
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-34
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-33
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-32
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-31
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-30
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Jan Friesse <jfriesse@redhat.com> - 0.0.4-29
|
||||||
|
- migrated to SPDX license
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-28
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-27
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-26
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-25
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-25
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
|
|
||||||
3
tests/.gitignore
vendored
3
tests/.gitignore
vendored
|
|
@ -1,3 +0,0 @@
|
||||||
# Ignore tests runs/artefacts.
|
|
||||||
artifacts/**
|
|
||||||
**/*.retry
|
|
||||||
10
tests/plan.fmf
Normal file
10
tests/plan.fmf
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
summary: Run all smoke tests
|
||||||
|
discover:
|
||||||
|
how: fmf
|
||||||
|
execute:
|
||||||
|
how: tmt
|
||||||
|
prepare:
|
||||||
|
how: install
|
||||||
|
package:
|
||||||
|
- iproute
|
||||||
|
- omping
|
||||||
2
tests/smoke/main.fmf
Normal file
2
tests/smoke/main.fmf
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
summary: Basic smoke test
|
||||||
|
test: ./runtest.sh
|
||||||
0
tests/smoke/runtest.sh
Normal file → Executable file
0
tests/smoke/runtest.sh
Normal file → Executable file
|
|
@ -1,10 +0,0 @@
|
||||||
- hosts: localhost
|
|
||||||
roles:
|
|
||||||
- role: standard-test-basic
|
|
||||||
tags:
|
|
||||||
- classic
|
|
||||||
tests:
|
|
||||||
- smoke
|
|
||||||
required_packages:
|
|
||||||
- iproute
|
|
||||||
- omping
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue