Update tcpreplay version in OSCI gating tests

Resolves: rhbz#1958933

Signed-off-by: Hangbin Liu <haliu@redhat.com>
This commit is contained in:
Hangbin Liu 2021-06-01 18:28:16 +08:00
parent 3cd4145f6e
commit eee01170f6
2 changed files with 8 additions and 4 deletions

View File

@ -1,6 +1,6 @@
Name: libndp
Version: 1.8
Release: 2%{?dist}
Release: 3%{?dist}
Summary: Library for Neighbor Discovery Protocol
License: LGPLv2+
URL: http://www.libndp.org/
@ -46,6 +46,9 @@ find $RPM_BUILD_ROOT -name \*.la -delete
%{_libdir}/pkgconfig/*.pc
%changelog
* Tue Jun 1 2021 Hangbin Liu <haliu@redhat.com> - 1.8-3
- Update tcpreplay version in OSCI gating tests (rhbz#1958933)
* Wed May 26 2021 Hangbin Liu <haliu@redhat.com> - 1.8-2
- Add OSCI gating tests (rhbz#1958933)

View File

@ -23,9 +23,10 @@ libndp_log() {
install_tcpreplay() {
which tcpreplay && return 0
wget https://github.com/appneta/tcpreplay/releases/download/v4.3.0/tcpreplay-4.3.0.tar.xz
tar xf tcpreplay-4.3.0.tar.xz
cd tcpreplay-4.3.0
local ver="4.3.4"
wget https://github.com/appneta/tcpreplay/releases/download/v${ver}/tcpreplay-${ver}.tar.xz
tar xf tcpreplay-${ver}.tar.xz
cd tcpreplay-${ver}
./configure && make && make install
cd ../
which tcpreplay