diff --git a/bin/tests/system/isctest/mark.py b/bin/tests/system/isctest/mark.py index 95435dfd3a..ac5480834c 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" )