summaryrefslogtreecommitdiff
path: root/tests/test_dns.c
diff options
context:
space:
mode:
authorDavid M. Lee <dlee@respoke.io>2015-07-24 17:04:35 -0500
committerDavid M. Lee <dlee@respoke.io>2015-08-07 19:35:13 -0500
commit40caf0ad9bef07bdfb568a88192c157dd1840100 (patch)
tree01d1e4f6745b5eeaeb607e5bb85a2884a6ff9087 /tests/test_dns.c
parent309dd2a4090ccdd1ea31d8d5415a645daddd3883 (diff)
Replaces clock_gettime() with ast_tsnow()
clock_gettime() is, unfortunately, not portable. But I did like that over our usual `ts.tv_nsec = tv.tv_usec * 1000` copy/paste code we usually do when we want a timespec and all we have is ast_tvnow(). This patch adds ast_tsnow(), which mimics ast_tvnow(), but returns a timespec. If clock_gettime() is available, it will use that. Otherwise ast_tsnow() falls back to using ast_tvnow(). Change-Id: Ibb1ee67ccf4826b9b76d5a5eb62e90b29b6c456e
Diffstat (limited to 'tests/test_dns.c')
-rw-r--r--tests/test_dns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_dns.c b/tests/test_dns.c
index 4e2c4a464..718cffc50 100644
--- a/tests/test_dns.c
+++ b/tests/test_dns.c
@@ -694,7 +694,7 @@ static void *resolution_thread(void *dns_query)
static const size_t V4_BUFSIZE = sizeof(struct in_addr);
char v4_buf[V4_BUFSIZE];
- clock_gettime(CLOCK_REALTIME, &timeout);
+ timeout = ast_tsnow();
timeout.tv_sec += 5;
ast_mutex_lock(&test_resolver_data.lock);
@@ -1089,7 +1089,7 @@ AST_TEST_DEFINE(resolver_resolve_async)
goto cleanup;
}
- clock_gettime(CLOCK_REALTIME, &timeout);
+ timeout = ast_tsnow();
timeout.tv_sec += 10;
ast_mutex_lock(&async_data->lock);
while (!async_data->complete) {
@@ -1279,7 +1279,7 @@ AST_TEST_DEFINE(resolver_resolve_async_cancel)
goto cleanup;
}
- clock_gettime(CLOCK_REALTIME, &timeout);
+ timeout = ast_tsnow();
timeout.tv_sec += 10;
ast_mutex_lock(&async_data->lock);
while (!async_data->complete) {