From: Michal Nowak Date: Wed, 17 Jan 2024 19:44:27 +0000 (+0100) Subject: Add "without_fips" mark X-Git-Tag: v9.21.5~30^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=feecbd8e777fa4fe4c6d329f375b8b2c4d60754d;p=thirdparty%2Fbind9.git Add "without_fips" mark The "without_fips" mark disables test function when BIND 9 was built with the FIPS mode enabled as not everything works in FIPS-enabled builds. --- diff --git a/bin/tests/system/isctest/mark.py b/bin/tests/system/isctest/mark.py index 95435dfd3aa..ac5480834c9 100644 --- a/bin/tests/system/isctest/mark.py +++ b/bin/tests/system/isctest/mark.py @@ -41,6 +41,10 @@ def with_tsan(*args): # pylint: disable=unused-argument return feature_test("--tsan") +without_fips = pytest.mark.skipif( + feature_test("--have-fips-mode"), reason="FIPS support enabled in the build" +) + have_libxml2 = pytest.mark.skipif( not feature_test("--have-libxml2"), reason="libxml2 support disabled in the build" )