summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/rules4
2 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index d92fc3f..bd98774 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+sssd (2.9.5-3) unstable; urgency=medium
+
+ * rules: Flip the test logic to fix ftbfs on armel/armhf.
+
+ -- Timo Aaltonen <tjaalton@debian.org> Tue, 04 Jun 2024 18:22:29 +0300
+
sssd (2.9.5-2) unstable; urgency=medium
* rules: Don't fail tests on armel, armhf for now.
diff --git a/debian/rules b/debian/rules
index 7da1f9f..165cc1d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -55,9 +55,9 @@ override_dh_auto_test:
ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
export CK_TIMEOUT_MULTIPLIER=10
ifneq (,$(filter $(DEB_HOST_ARCH), armel armhf))
- dh_auto_test -- VERBOSE=yes
- else
dh_auto_test -- VERBOSE=yes || true
+ else
+ dh_auto_test -- VERBOSE=yes
endif
unset CK_TIMEOUT_MULTIPLIER
endif