From 93c09d843f73c303c5451cf69074def76dd3caea009119403ed4a373f14d0967 Mon Sep 17 00:00:00 2001 From: Michal Suchanek Date: Wed, 12 Mar 2025 17:08:54 +0100 Subject: [PATCH] tests: drop ppc64 workaround, print failed test results if any --- kmod-testsuite.spec | 9 ++++----- kmod.changes | 5 +++++ 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/kmod-testsuite.spec b/kmod-testsuite.spec index a33273e..e50cdfb 100644 --- a/kmod-testsuite.spec +++ b/kmod-testsuite.spec @@ -96,10 +96,9 @@ export LDFLAGS="-Wl,-z,relro,-z,now" # empty %check -%ifarch ppc64 -make check V=1 KDIR="%kdir" || echo "Warning: bypass boo#897845" -%else -make check V=1 KDIR="%kdir" -%endif +result=0 +make check V=1 KDIR="%kdir" || result=$? +find . -name test-suite.log | xargs cat +exit $result %changelog diff --git a/kmod.changes b/kmod.changes index 8325a7a..d1de536 100644 --- a/kmod.changes +++ b/kmod.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Mar 12 16:03:22 UTC 2025 - Michal Suchanek + +- tests: drop ppc64 workaround, print failed test results if any + ------------------------------------------------------------------- Thu Mar 6 09:22:40 UTC 2025 - Jan Engelhardt