Enable tests

Signed-off-by: Michel Alexandre Salim <salimma@fedoraproject.org>
This commit is contained in:
Michel Alexandre Salim 2022-05-11 11:56:40 -07:00
parent a285e1b4f0
commit 97b64564f9
2 changed files with 44 additions and 1 deletions

View File

@ -0,0 +1,35 @@
Description: disable test_addrxlat.py
In the Debian build environment, it can't find the built object files.
And because this is built with autotools the python helpers don't apply either.
Author: Michel Alexandre Salim <michel@michel-slm.name>
Last-Update: 2022-05-11
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: libkdumpfile-0.4.1/python/Makefile.am
===================================================================
--- libkdumpfile-0.4.1.orig/python/Makefile.am 2020-09-26 11:29:19.000000000 +0000
+++ libkdumpfile-0.4.1/python/Makefile.am 2022-05-11 20:38:48.799039477 +0000
@@ -89,8 +89,7 @@
noinst_HEADERS = \
addrxlatmod.h
-test_scripts = \
- test_addrxlat.py
+test_scripts =
dist_check_SCRIPTS = \
$(test_scripts)
Index: libkdumpfile-0.4.1/python/Makefile.in
===================================================================
--- libkdumpfile-0.4.1.orig/python/Makefile.in 2021-11-04 10:37:35.000000000 +0000
+++ libkdumpfile-0.4.1/python/Makefile.in 2022-05-11 20:38:40.042798711 +0000
@@ -590,8 +590,7 @@
noinst_HEADERS = \
addrxlatmod.h
-test_scripts = \
- test_addrxlat.py
+test_scripts =
dist_check_SCRIPTS = \
$(test_scripts)

View File

@ -10,6 +10,7 @@ License: LGPLv3+ or GPLv2+
URL: https://github.com/ptesarik/libkdumpfile
Source: %{url}/releases/download/v%{version}/%{name}-%{version}.tar.gz
Patch: %{name}-0.4.1-fix-for-gcc12.patch
Patch: %{name}-disable-python-test_addrxlat.diff
BuildRequires: gcc-c++
BuildRequires: doxygen
@ -67,7 +68,7 @@ sed -e "\|#!/usr/bin/env python|d" -i python/*/*.py
%build
%configure --disable-static
%configure
%make_build
%{__make} doxygen-doc
@ -75,6 +76,13 @@ sed -e "\|#!/usr/bin/env python|d" -i python/*/*.py
%install
%make_install
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
# static artifacts are needed to run tests, but we don't
# want to ship them
find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} ';'
%check
make check
%files