[tor-commits] [tor/master] Use NS_SUBMODULEs in test_dns.c

nickm at torproject.org nickm at torproject.org
Fri Oct 30 14:07:17 UTC 2015


commit 2f5d0ea13341367e086d2c7a795894ba34029bcb
Author: rl1987 <rl1987 at sdf.lonestar.org>
Date:   Sun Sep 27 19:51:04 2015 +0300

    Use NS_SUBMODULEs in test_dns.c
---
 src/test/test_dns.c |   28 ++++++++++++++++++++++------
 1 file changed, 22 insertions(+), 6 deletions(-)

diff --git a/src/test/test_dns.c b/src/test/test_dns.c
index ad81914..6549339 100644
--- a/src/test/test_dns.c
+++ b/src/test/test_dns.c
@@ -6,8 +6,12 @@
 #include "dns.h"
 #include "connection.h"
 
+#define NS_MODULE dns
+
+#define NS_SUBMODULE clip_ttl
+
 static void
-test_dns_clip_ttl(void *arg)
+NS(test_main)(void *arg)
 {
   (void)arg;
 
@@ -21,8 +25,12 @@ test_dns_clip_ttl(void *arg)
   return;
 }
 
+#undef NS_SUBMODULE
+
+#define NS_SUBMODULE expiry_ttl
+
 static void
-test_dns_expiry_ttl(void *arg)
+NS(test_main)(void *arg)
 {
   (void)arg;
 
@@ -36,6 +44,10 @@ test_dns_expiry_ttl(void *arg)
   return;
 }
 
+#undef NS_SUBMODULE
+
+#define NS_SUBMODULE resolve
+
 static int resolve_retval = 0;
 static int resolve_made_conn_pending = 0;
 static char *resolved_name = NULL;
@@ -130,7 +142,7 @@ connection_free_replacement(connection_t *conn)
 }
 
 static void
-test_dns_resolve_outer(void *arg)
+NS(test_main)(void *arg)
 {
   (void) arg;
   int retval;
@@ -302,10 +314,14 @@ test_dns_resolve_outer(void *arg)
   return;
 }
 
+#undef NS_SUBMODULE
+
 struct testcase_t dns_tests[] = {
-   { "clip_ttl", test_dns_clip_ttl, 0, NULL, NULL },
-   { "expiry_ttl", test_dns_expiry_ttl, 0, NULL, NULL },
-   { "resolve_outer", test_dns_resolve_outer, TT_FORK, NULL, NULL },
+   TEST_CASE(clip_ttl),
+   TEST_CASE(expiry_ttl),
+   TEST_CASE(resolve),
    END_OF_TESTCASES
 };
 
+#undef NS_MODULE
+





More information about the tor-commits mailing list