mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Use NS_SUBMODULEs in test_dns.c
This commit is contained in:
parent
2929986049
commit
2f5d0ea133
@ -6,8 +6,12 @@
|
|||||||
#include "dns.h"
|
#include "dns.h"
|
||||||
#include "connection.h"
|
#include "connection.h"
|
||||||
|
|
||||||
|
#define NS_MODULE dns
|
||||||
|
|
||||||
|
#define NS_SUBMODULE clip_ttl
|
||||||
|
|
||||||
static void
|
static void
|
||||||
test_dns_clip_ttl(void *arg)
|
NS(test_main)(void *arg)
|
||||||
{
|
{
|
||||||
(void)arg;
|
(void)arg;
|
||||||
|
|
||||||
@ -21,8 +25,12 @@ test_dns_clip_ttl(void *arg)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#undef NS_SUBMODULE
|
||||||
|
|
||||||
|
#define NS_SUBMODULE expiry_ttl
|
||||||
|
|
||||||
static void
|
static void
|
||||||
test_dns_expiry_ttl(void *arg)
|
NS(test_main)(void *arg)
|
||||||
{
|
{
|
||||||
(void)arg;
|
(void)arg;
|
||||||
|
|
||||||
@ -36,6 +44,10 @@ test_dns_expiry_ttl(void *arg)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#undef NS_SUBMODULE
|
||||||
|
|
||||||
|
#define NS_SUBMODULE resolve
|
||||||
|
|
||||||
static int resolve_retval = 0;
|
static int resolve_retval = 0;
|
||||||
static int resolve_made_conn_pending = 0;
|
static int resolve_made_conn_pending = 0;
|
||||||
static char *resolved_name = NULL;
|
static char *resolved_name = NULL;
|
||||||
@ -130,7 +142,7 @@ connection_free_replacement(connection_t *conn)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
test_dns_resolve_outer(void *arg)
|
NS(test_main)(void *arg)
|
||||||
{
|
{
|
||||||
(void) arg;
|
(void) arg;
|
||||||
int retval;
|
int retval;
|
||||||
@ -302,10 +314,14 @@ test_dns_resolve_outer(void *arg)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#undef NS_SUBMODULE
|
||||||
|
|
||||||
struct testcase_t dns_tests[] = {
|
struct testcase_t dns_tests[] = {
|
||||||
{ "clip_ttl", test_dns_clip_ttl, 0, NULL, NULL },
|
TEST_CASE(clip_ttl),
|
||||||
{ "expiry_ttl", test_dns_expiry_ttl, 0, NULL, NULL },
|
TEST_CASE(expiry_ttl),
|
||||||
{ "resolve_outer", test_dns_resolve_outer, TT_FORK, NULL, NULL },
|
TEST_CASE(resolve),
|
||||||
END_OF_TESTCASES
|
END_OF_TESTCASES
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#undef NS_MODULE
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user