From cad73b95bff3ee1d3c4301f8fa8a08aa0794d491 Mon Sep 17 00:00:00 2001 From: Artem Boldariev Date: Wed, 26 Oct 2022 15:41:30 +0300 Subject: [PATCH] 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. --- tests/isc/tlsdns_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/isc/tlsdns_test.c b/tests/isc/tlsdns_test.c index 61b7fca51f..a8de6bce4a 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); }