+++ /dev/null
-#!/bin/sh
-
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
-#
-# SPDX-License-Identifier: MPL-2.0
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, you can obtain one at https://mozilla.org/MPL/2.0/.
-#
-# See the COPYRIGHT file distributed with this work for additional
-# information regarding copyright ownership.
-
-. ../conf.sh
-
-$FEATURETEST --have-fips-dh || {
- echo_i "FIPS mode Diffie-Hellman not working - skipping doth test"
- exit 255
-}
-
-exit 0
pytestmark = [
isctest.mark.with_libnghttp2,
+ isctest.mark.with_fips_dh,
EXTRA_ARTIFACTS,
]
pytestmark = [
isctest.mark.with_libnghttp2,
+ isctest.mark.with_fips_dh,
]
pytestmark = [
isctest.mark.with_libnghttp2,
+ isctest.mark.with_fips_dh,
EXTRA_ARTIFACTS,
]
pytestmark = [
isctest.mark.with_libnghttp2,
+ isctest.mark.with_fips_dh,
EXTRA_ARTIFACTS,
]
os.getenv("FEATURE_GSSAPI") != "1", reason="GSS-API support disabled in the build"
)
+with_fips_dh = pytest.mark.skipif(
+ os.getenv("FEATURE_FIPS_DH") != "1", reason="FIPS mode Diffie-Hellman is required"
+)
+
without_tsan = pytest.mark.skipif(
os.getenv("FEATURE_TSAN") == "1", reason="incompatible with ThreadSanitizer (TSAN)"
)
+++ /dev/null
-#!/bin/sh
-
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
-#
-# SPDX-License-Identifier: MPL-2.0
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, you can obtain one at https://mozilla.org/MPL/2.0/.
-#
-# See the COPYRIGHT file distributed with this work for additional
-# information regarding copyright ownership.
-
-. ../conf.sh
-
-$FEATURETEST --have-fips-dh || {
- echo_i "FIPS mode Diffie-Hellman not working - skipping tsiggss test"
- exit 255
-}
-
-exit 0
pytestmark = [
isctest.mark.with_gssapi,
+ isctest.mark.with_fips_dh,
EXTRA_ARTIFACTS,
]
pytestmark = [
isctest.mark.with_gssapi,
+ isctest.mark.with_fips_dh,
EXTRA_ARTIFACTS,
]
pytestmark = [
isctest.mark.with_gssapi,
+ isctest.mark.with_fips_dh,
EXTRA_ARTIFACTS,
]