2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

Add regression test for CVE-2022-1183

If sslyze is available in PATH, run it in a loop as part of the "doth"
system test.
This commit is contained in:
Michał Kępień
2022-06-27 22:50:00 +02:00
parent c7146ce90a
commit e97b4697cf
4 changed files with 73 additions and 0 deletions

View File

@@ -26,6 +26,11 @@ def named_tlsport():
return int(os.environ.get("TLSPORT", default=8853))
@pytest.fixture(scope="session")
def named_httpsport():
return int(os.environ.get("HTTPSPORT", default=4443))
@pytest.fixture(scope="session")
def control_port():
return int(os.environ.get("CONTROLPORT", default=9953))