From ff983ed647ae2b4e9f949b3f094b9b2958f263a4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nicki=20K=C5=99=C3=AD=C5=BEek?= Date: Mon, 29 Jul 2024 13:14:46 +0200 Subject: [PATCH] Mark the keyfromlabel&enginepkcs11 tests as xfail The tests currently fail on debian:bookworm due to a bug in OpenSSL 3.0.13. --- bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py | 3 +++ bin/tests/system/keyfromlabel/tests_sh_keyfromlabel.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py b/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py index 334142dde2c..5a022c85e36 100644 --- a/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py +++ b/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py @@ -9,6 +9,9 @@ # See the COPYRIGHT file distributed with this work for additional # information regarding copyright ownership. +import pytest + +@pytest.mark.xfail(reason="openssl bug causes failure on bookworm [GL #4814]") def test_enginepkcs11(run_tests_sh): run_tests_sh() diff --git a/bin/tests/system/keyfromlabel/tests_sh_keyfromlabel.py b/bin/tests/system/keyfromlabel/tests_sh_keyfromlabel.py index 9cbf56e125d..07ee88ca636 100644 --- a/bin/tests/system/keyfromlabel/tests_sh_keyfromlabel.py +++ b/bin/tests/system/keyfromlabel/tests_sh_keyfromlabel.py @@ -9,6 +9,9 @@ # See the COPYRIGHT file distributed with this work for additional # information regarding copyright ownership. +import pytest + +@pytest.mark.xfail(reason="openssl bug causes failure on bookworm [GL #4814]") def test_keyfromlabel(run_tests_sh): run_tests_sh() -- 2.47.3