Compare commits

..

9 Commits

Author SHA1 Message Date
62afdb8b1e Import from AlmaLinux stable repository 2024-05-31 17:35:33 +00:00
CentOS Sources
c7ed7938da import fabtests-1.17.0-2.el8 2023-05-16 06:50:56 +00:00
CentOS Sources
aa796a9e02 import fabtests-1.15.1-1.el8 2022-11-08 07:00:47 +00:00
CentOS Sources
0cc7c19cbe import fabtests-1.14.0-1.el8 2022-05-10 07:19:14 +00:00
CentOS Sources
8e7c08fe58 import fabtests-1.12.1-1.el8 2021-12-08 12:19:03 +00:00
CentOS Sources
ac86c21d0f import fabtests-1.11.2-1.el8 2021-09-09 16:30:05 +00:00
CentOS Sources
4dfa9e8e80 import fabtests-1.10.0-1.el8 2021-09-09 16:30:02 +00:00
CentOS Sources
8cebd2e59c import fabtests-1.9.0rc1-1.el8 2021-09-09 16:29:59 +00:00
CentOS Sources
61c38ebab8 import fabtests-1.8.0-1.el8 2021-09-09 16:29:56 +00:00
4 changed files with 66 additions and 40 deletions

View File

@ -1 +0,0 @@
1500c433b5b6f2b01ca49caf290d0bd48ac2a09e SOURCES/fabtests-1.6.2.tar.bz2

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/fabtests-1.6.2.tar.bz2
SOURCES/fabtests-1.18.0.tar.bz2

View File

@ -1,36 +1,20 @@
From c97eca499945232f0e6d40b254e64b168261931e Mon Sep 17 00:00:00 2001
From: Michal Schmidt <mschmidt@redhat.com>
Date: Tue, 19 Apr 2016 13:29:43 +0200
Subject: [PATCH] adjust shebang lines in rft_yaml_to_junit_xml and
runfabtests.sh
Do not use /usr/bin/env. Call the appropriate binary directly.
This way rpmbuild will record the right dependencies.
---
scripts/rft_yaml_to_junit_xml | 2 +-
scripts/runfabtests.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/rft_yaml_to_junit_xml b/scripts/rft_yaml_to_junit_xml
index feb6463..2d3b3a3 100755
--- a/scripts/rft_yaml_to_junit_xml
+++ b/scripts/rft_yaml_to_junit_xml
diff --git a/fabtests/scripts/rft_yaml_to_junit_xml b/fabtests/scripts/rft_yaml_to_junit_xml
index feb646366..2d3b3a30c 100755
--- a/fabtests/scripts/rft_yaml_to_junit_xml
+++ b/fabtests/scripts/rft_yaml_to_junit_xml
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby
+#!/usr/bin/ruby
# Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
#
diff --git a/scripts/runfabtests.sh b/scripts/runfabtests.sh
index decb11a..8cc02f5 100755
--- a/scripts/runfabtests.sh
+++ b/scripts/runfabtests.sh
diff --git a/fabtests/scripts/runfabtests.sh b/fabtests/scripts/runfabtests.sh
index aba23be6f..73f55d07b 100755
--- a/fabtests/scripts/runfabtests.sh
+++ b/fabtests/scripts/runfabtests.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/bin/bash
#
# Copyright (c) 2017, Intel Corporation. All rights reserved.
--
2.17.0
# Copyright (c) 2017-2019, Intel Corporation. All rights reserved.

View File

@ -1,35 +1,31 @@
Name: fabtests
Version: 1.6.2
Release: 1%{?dist}
Version: 1.18.0
Release: 1%{?dist}.1
Summary: Test suite for libfabric API
# include/jsmn.h and common/jsmn.c are licensed under MIT.
# All other source files permit distribution under BSD. Some of them
# additionaly expressly allow the option to be licensed under GPLv2.
# See the license headers in individual source files to see which those are.
License: BSD and (BSD or GPLv2) and MIT
Url: https://github.com/ofiwg/fabtests
Source: https://github.com/ofiwg/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.bz2
Url: https://github.com/ofiwg/libfabric
Source: https://github.com/ofiwg/libfabric/releases/download/v%{version}/%{name}-%{version}.tar.bz2
Patch0: 0001-adjust-shebang-lines-in-rft_yaml_to_junit_xml-and-ru.patch
BuildRequires: libfabric-devel >= %{version}
%ifarch %{valgrind_arches}
BuildRequires: valgrind-devel
%endif
BuildRequires: gcc
BuildRequires: make
Requires: python3-pytest
%description
Fabtests provides a set of examples that uses libfabric - a high-performance
fabric software library.
%prep
%setup -q
%patch0 -p1
%setup -q -n %{name}-%{version}
%patch0 -p2
%build
%configure \
%ifarch %{valgrind_arches}
--with-valgrind \
%endif
%configure --with-valgrind
make %{?_smp_mflags} V=1
%install
@ -40,11 +36,58 @@ rm -f %{buildroot}%{_libdir}/*.la
%files
%{_datadir}/%{name}/
%{_bindir}/*
%{_mandir}/man1/*
%{_mandir}/man7/*
%doc AUTHORS README
%license COPYING
%changelog
* Tue Jul 11 2023 Kamal Heib <kheib@redhat.com> - 1.18.0-1.1
- Rebuilt for fixing tag.
- Resolves: rhbz#2214187
* Mon Jun 12 2023 Kamal Heib <kheib@redhat.com> - 1.18.0-1
- Update to upstream release 1.18.0
- Add gating tests
- Resolves: rhbz#2214187
* Wed Feb 08 2023 Michal Schmidt <mschmidt@redhat.com> - 1.17.0-2
- Update to upstream release 1.17.0
- Require python3-pytest
- Resolves: rhbz#2168114, rhbz#2159964
* Fri Aug 19 2022 Michal Schmidt <mschmidt@redhat.com> - 1.15.1-1
- Update to upstream release 1.15.1
- Resolves: rhbz#2114061
* Fri Nov 26 2021 Honggang Li <honli@redhat.com> - 1.14.0-1
- Rebase to upstream release v1.14.0
- Resolves: bz2008510
* Thu May 13 2021 Honggang Li <honli@redhat.com> - 1.12.1-1
- Rebase to upstream release v1.12.1
- Resolves: bz1960071
* Tue Dec 22 2020 Honggang Li <honli@redhat.com> - 1.11.2-1
- Rebase to upstream release v1.11.2
- Resolves: bz1909635
* Tue Nov 17 2020 Honggang Li <honli@redhat.com> - 1.11.1-1
- Rebase to upstream release v1.11.1
- Resolves: bz1856274
* Sat Apr 25 2020 Honggang Li <honli@redhat.com> - 1.10.0
- Rebase to upstream release v1.10.0
- Resolves: bz1770651
* Mon Nov 11 2019 Honggang Li <honli@redhat.com> - 1.9.0rc1-1
- Rebase to upstream release v1.9.0rc1
- Resolves: bz1770650
* Mon Jul 1 2019 Honggang Li <honli@redhat.com> - 1.8.0-1
- Rebase to upstream release v1.8.0
- Resolves: bz1710870
* Mon Dec 10 2018 Honggang Li <honli@redhat.com> - 1.6.2-1
- Rebase to upstream release v1.6.2
- Resolves: bz1654871