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.
(cherry picked from commit
feecbd8e777fa4fe4c6d329f375b8b2c4d60754d)
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"
)