2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

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.
This commit is contained in:
Artem Boldariev 2022-10-26 15:41:30 +03:00
parent 5167cc5982
commit cad73b95bf

View File

@ -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);
}