diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-08-30 00:31:02 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-08-30 00:31:02 +0300 |
commit | cdc7e4479ff5aa08df0857a13a7acd7a00b79c89 (patch) | |
tree | a57bf9251fc79d9ef7bd3d33b1d05f3813dc3d4a /test/nxt_sprintf_test.c | |
parent | 92f3b852981c739a2e6ff6d50dc646fe86031b27 (diff) | |
download | unit-cdc7e4479ff5aa08df0857a13a7acd7a00b79c89.tar.gz unit-cdc7e4479ff5aa08df0857a13a7acd7a00b79c89.tar.bz2 |
Lib unit tests have been renamed to tests.
Diffstat (limited to '')
-rw-r--r-- | test/nxt_sprintf_test.c (renamed from test/nxt_sprintf_unit_test.c) | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/nxt_sprintf_unit_test.c b/test/nxt_sprintf_test.c index 02434791..7c6e2019 100644 --- a/test/nxt_sprintf_unit_test.c +++ b/test/nxt_sprintf_test.c @@ -5,6 +5,7 @@ */ #include <nxt_main.h> +#include "nxt_tests.h" typedef struct { @@ -39,7 +40,7 @@ nxt_sprintf_test_double(u_char *buf, u_char *end, const char *fmt, nxt_int_t -nxt_sprintf_unit_test(nxt_thread_t *thr) +nxt_sprintf_test(nxt_thread_t *thr) { nxt_int_t ret; nxt_uint_t i; @@ -65,6 +66,6 @@ nxt_sprintf_unit_test(nxt_thread_t *thr) return NXT_ERROR; } - nxt_log_error(NXT_LOG_NOTICE, thr->log, "nxt_sprintf() unit test passed"); + nxt_log_error(NXT_LOG_NOTICE, thr->log, "nxt_sprintf() test passed"); return NXT_OK; } |