7
0

2 Commits

Author SHA256 Message Date
2e69bf1048 Skip tests failing on Debian 13 with armv7l arch 2026-02-25 14:34:51 +01:00
738677c5df Ignore test_ssl.py::HttpslibSSLSNIClientTestCase::test_IP_call
for RHEL 10 and clones as it's getting stuck in OBS
2026-01-02 10:05:02 +01:00
2 changed files with 23 additions and 0 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Wed Feb 25 12:34:26 UTC 2026 - Victor Zhestkov <vzhestkov@suse.com>
- Skip test_is32bit or test_server_simple_timeouts on Debian 13
with building on armv7l architecture as failing.
Tests will be fixed with the next M2Crypto release.
-------------------------------------------------------------------
Fri Dec 19 10:27:32 UTC 2025 - Victor Zhestkov <vzhestkov@suse.com>
- Ignore test_ssl.py::HttpslibSSLSNIClientTestCase::test_IP_call
for RHEL 10 and clones as it's getting stuck in OBS
-------------------------------------------------------------------
Mon Sep 22 10:38:11 UTC 2025 - Victor Zhestkov <vzhestkov@suse.com>

View File

@@ -105,6 +105,16 @@ donttest="test_verify_with_static_callback"
# Skip test failing due to tls1 disabled by default in Ubuntu 20.04
donttest="$donttest or test_tls1_ok"
%endif
%if 0%{?debian} == 13
%ifarch armhf
# Skip test failing with Debain 13 on armv7l
donttest="$donttest or test_is32bit or test_server_simple_timeouts"
%endif
%endif
%if 0%{?rhel} >= 10
# Ignore test_IP_call as it's causing test getting stuck in OBS
donttest="$donttest or test_IP_call"
%endif
%if 0%{?rhel} >= 9
# On RHEL 9 and 10 clonses crypto policies are not allowing legacy crypto parameters.
# There are some tests (24 for now) which are failing because of it.