From 0e1095a6f08d063f5856df1549662b11c7a35020 Mon Sep 17 00:00:00 2001 From: Jan Friesse Date: Tue, 25 Mar 2025 11:07:42 +0100 Subject: [PATCH 1/4] Use autosetup Signed-off-by: Jan Friesse --- omping.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/omping.spec b/omping.spec index a38a0fc..1019e43 100644 --- a/omping.spec +++ b/omping.spec @@ -14,7 +14,7 @@ Omping (Open Multicast Ping) is tool to test IP multicast functionality primarily in local network. %prep -%setup -q +%autosetup -S git_am %build %set_build_flags From a86589621c7d7e1b464865ec53761b3290416e75 Mon Sep 17 00:00:00 2001 From: Jan Friesse Date: Tue, 25 Mar 2025 11:11:43 +0100 Subject: [PATCH 2/4] Add git build dependency Required for autosetup git_am Signed-off-by: Jan Friesse --- omping.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/omping.spec b/omping.spec index 1019e43..191d163 100644 --- a/omping.spec +++ b/omping.spec @@ -8,6 +8,7 @@ Source0: https://github.com/jfriesse/%{name}/releases/download/%{version}/%{name BuildRequires: gcc BuildRequires: make +BuildRequires: git %description Omping (Open Multicast Ping) is tool to test IP multicast functionality From 25c3a8a9eeac80973dedce22cf0adeccfc520813 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 24 Jul 2025 23:29:55 +0000 Subject: [PATCH 3/4] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- omping.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/omping.spec b/omping.spec index 191d163..541936c 100644 --- a/omping.spec +++ b/omping.spec @@ -1,6 +1,6 @@ Name: omping Version: 0.0.4 -Release: 34%{?dist} +Release: 35%{?dist} Summary: Utility to test IP multicast functionality License: ISC URL: https://github.com/jfriesse/omping @@ -31,6 +31,9 @@ primarily in local network. %{_mandir}/man8/* %changelog +* Thu Jul 24 2025 Fedora Release Engineering - 0.0.4-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Fri Jan 17 2025 Fedora Release Engineering - 0.0.4-34 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From fb8cbc4ca1764a789b49530c45e97aa873238e54 Mon Sep 17 00:00:00 2001 From: Jan Friesse Date: Mon, 28 Jul 2025 10:01:39 +0200 Subject: [PATCH 4/4] Migrate tests from STI to TMT format Signed-off-by: Jan Friesse --- .fmf/version | 1 + tests/.gitignore | 3 --- tests/plan.fmf | 10 ++++++++++ tests/smoke/main.fmf | 2 ++ tests/smoke/runtest.sh | 0 tests/tests.yml | 10 ---------- 6 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 .fmf/version delete mode 100644 tests/.gitignore create mode 100644 tests/plan.fmf create mode 100644 tests/smoke/main.fmf mode change 100644 => 100755 tests/smoke/runtest.sh delete mode 100644 tests/tests.yml diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/tests/.gitignore b/tests/.gitignore deleted file mode 100644 index e6c79fd..0000000 --- a/tests/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Ignore tests runs/artefacts. -artifacts/** -**/*.retry diff --git a/tests/plan.fmf b/tests/plan.fmf new file mode 100644 index 0000000..86ef9b3 --- /dev/null +++ b/tests/plan.fmf @@ -0,0 +1,10 @@ +summary: Run all smoke tests +discover: + how: fmf +execute: + how: tmt +prepare: + how: install + package: + - iproute + - omping diff --git a/tests/smoke/main.fmf b/tests/smoke/main.fmf new file mode 100644 index 0000000..c431594 --- /dev/null +++ b/tests/smoke/main.fmf @@ -0,0 +1,2 @@ +summary: Basic smoke test +test: ./runtest.sh diff --git a/tests/smoke/runtest.sh b/tests/smoke/runtest.sh old mode 100644 new mode 100755 diff --git a/tests/tests.yml b/tests/tests.yml deleted file mode 100644 index 65995c8..0000000 --- a/tests/tests.yml +++ /dev/null @@ -1,10 +0,0 @@ -- hosts: localhost - roles: - - role: standard-test-basic - tags: - - classic - tests: - - smoke - required_packages: - - iproute - - omping