From: Artem Boldariev Date: Wed, 26 Oct 2022 12:41:30 +0000 (+0300) Subject: TLS DNS unit tests: do not share the port with TCP DNS tests X-Git-Tag: v9.19.7~15^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cad73b95bff3ee1d3c4301f8fa8a08aa0794d491;p=thirdparty%2Fbind9.git TLS DNS unit tests: do not share the port with TCP DNS tests TLS DNS unit tests were sharing the port with TCP DNS tests by mistake. That could have caused conflicts between the two, when running the unit tests in parallel. This commit fixes that. --- diff --git a/tests/isc/tlsdns_test.c b/tests/isc/tlsdns_test.c index 61b7fca51fc..a8de6bce4aa 100644 --- a/tests/isc/tlsdns_test.c +++ b/tests/isc/tlsdns_test.c @@ -150,7 +150,7 @@ ISC_TEST_LIST_END static int tlsdns_setup(void **state __attribute__((__unused__))) { - stream_port = TCPDNS_TEST_PORT; + stream_port = TLSDNS_TEST_PORT; return (0); }