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_mp_unit_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_mp_test.c (renamed from test/nxt_mp_unit_test.c) | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/nxt_mp_unit_test.c b/test/nxt_mp_test.c index c51c9152..39aa939d 100644 --- a/test/nxt_mp_unit_test.c +++ b/test/nxt_mp_test.c @@ -5,10 +5,11 @@ */ #include <nxt_main.h> +#include "nxt_tests.h" nxt_int_t -nxt_mp_unit_test(nxt_thread_t *thr, nxt_uint_t runs, nxt_uint_t nblocks, +nxt_mp_test(nxt_thread_t *thr, nxt_uint_t runs, nxt_uint_t nblocks, size_t max_size) { void **blocks; @@ -25,7 +26,7 @@ nxt_mp_unit_test(nxt_thread_t *thr, nxt_uint_t runs, nxt_uint_t nblocks, nxt_thread_time_update(thr); nxt_log_error(NXT_LOG_NOTICE, thr->log, - "mem pool unit test started, max:%uz", max_size); + "mem pool test started, max:%uz", max_size); blocks = nxt_malloc(nblocks * sizeof(void *)); if (blocks == NULL) { @@ -63,7 +64,7 @@ nxt_mp_unit_test(nxt_thread_t *thr, nxt_uint_t runs, nxt_uint_t nblocks, if (blocks[n] == NULL) { nxt_log_error(NXT_LOG_NOTICE, thr->log, - "mem pool unit test failed: %uz", total); + "mem pool test failed: %uz", total); return NXT_ERROR; } } @@ -83,7 +84,7 @@ nxt_mp_unit_test(nxt_thread_t *thr, nxt_uint_t runs, nxt_uint_t nblocks, nxt_free(blocks); nxt_thread_time_update(thr); - nxt_log_error(NXT_LOG_NOTICE, thr->log, "mem pool unit test passed"); + nxt_log_error(NXT_LOG_NOTICE, thr->log, "mem pool test passed"); return NXT_OK; } |