summaryrefslogtreecommitdiffhomepage
path: root/test/nxt_term_parse_test.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2017-08-30 00:31:02 +0300
committerIgor Sysoev <igor@sysoev.ru>2017-08-30 00:31:02 +0300
commitcdc7e4479ff5aa08df0857a13a7acd7a00b79c89 (patch)
treea57bf9251fc79d9ef7bd3d33b1d05f3813dc3d4a /test/nxt_term_parse_test.c
parent92f3b852981c739a2e6ff6d50dc646fe86031b27 (diff)
downloadunit-cdc7e4479ff5aa08df0857a13a7acd7a00b79c89.tar.gz
unit-cdc7e4479ff5aa08df0857a13a7acd7a00b79c89.tar.bz2
Lib unit tests have been renamed to tests.
Diffstat (limited to '')
-rw-r--r--test/nxt_term_parse_test.c (renamed from test/nxt_term_parse_unit_test.c)7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/nxt_term_parse_unit_test.c b/test/nxt_term_parse_test.c
index 818d0e19..83ae4931 100644
--- a/test/nxt_term_parse_unit_test.c
+++ b/test/nxt_term_parse_test.c
@@ -5,6 +5,7 @@
*/
#include <nxt_main.h>
+#include "nxt_tests.h"
typedef struct {
@@ -33,7 +34,7 @@ static const nxt_term_parse_test_t terms[] = {
nxt_int_t
-nxt_term_parse_unit_test(nxt_thread_t *thr)
+nxt_term_parse_test(nxt_thread_t *thr)
{
nxt_int_t val;
nxt_uint_t i;
@@ -48,12 +49,12 @@ nxt_term_parse_unit_test(nxt_thread_t *thr)
if (val != terms[i].value) {
nxt_log_alert(thr->log,
- "term parse unit test failed: \"%V\": %i %i",
+ "term parse test failed: \"%V\": %i %i",
s, terms[i].value, val);
return NXT_ERROR;
}
}
- nxt_log_error(NXT_LOG_NOTICE, thr->log, "term parse unit test passed");
+ nxt_log_error(NXT_LOG_NOTICE, thr->log, "term parse test passed");
return NXT_OK;
}