summaryrefslogtreecommitdiffhomepage
path: root/test/nxt_mem_zone_test.c
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2017-11-21 18:55:28 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2017-11-21 18:55:28 +0300
commit78a77c3e38593a5dd1ba0970d036ed5f5100f88d (patch)
tree3011f02b551c623a926e85ed1532986b947da300 /test/nxt_mem_zone_test.c
parent89a1c66dd0c396cda30a960e790817d28dc9a2de (diff)
downloadunit-78a77c3e38593a5dd1ba0970d036ed5f5100f88d.tar.gz
unit-78a77c3e38593a5dd1ba0970d036ed5f5100f88d.tar.bz2
Tests: move existing tests to "src" folder.
Diffstat (limited to 'test/nxt_mem_zone_test.c')
-rw-r--r--test/nxt_mem_zone_test.c74
1 files changed, 0 insertions, 74 deletions
diff --git a/test/nxt_mem_zone_test.c b/test/nxt_mem_zone_test.c
deleted file mode 100644
index faf0feee..00000000
--- a/test/nxt_mem_zone_test.c
+++ /dev/null
@@ -1,74 +0,0 @@
-
-/*
- * Copyright (C) Igor Sysoev
- * Copyright (C) NGINX, Inc.
- */
-
-#include <nxt_main.h>
-#include "nxt_tests.h"
-
-
-nxt_int_t
-nxt_mem_zone_test(nxt_thread_t *thr, nxt_uint_t runs, nxt_uint_t nblocks,
- size_t max_size)
-{
- void *start, **blocks;
- size_t total, zone_size;
- uint32_t size;
- nxt_uint_t i, n;
- nxt_mem_zone_t *zone;
- const size_t page_size = 4096;
-
- nxt_thread_time_update(thr);
- nxt_log_error(NXT_LOG_NOTICE, thr->log,
- "mem zone test started, max:%uz", max_size);
-
- zone_size = (max_size + 1) * nblocks;
-
- start = nxt_memalign(page_size, zone_size);
- if (start == NULL) {
- return NXT_ERROR;
- }
-
- zone = nxt_mem_zone_init(start, zone_size, page_size);
- if (zone == NULL) {
- return NXT_ERROR;
- }
-
- blocks = nxt_malloc(nblocks * sizeof(void *));
- if (blocks == NULL) {
- return NXT_ERROR;
- }
-
- size = 0;
-
- for (i = 0; i < runs; i++) {
-
- total = 0;
-
- for (n = 0; n < nblocks; n++) {
- size = nxt_murmur_hash2(&size, sizeof(uint32_t));
-
- total += size & max_size;
- blocks[n] = nxt_mem_zone_alloc(zone, size & max_size);
-
- if (blocks[n] == NULL) {
- nxt_log_error(NXT_LOG_NOTICE, thr->log,
- "mem zone test failed: %uz", total);
- return NXT_ERROR;
- }
- }
-
- for (n = 0; n < nblocks; n++) {
- nxt_mem_zone_free(zone, blocks[n]);
- }
- }
-
- nxt_free(blocks);
- nxt_free(zone);
-
- nxt_thread_time_update(thr);
- nxt_log_error(NXT_LOG_NOTICE, thr->log, "mem zone test passed");
-
- return NXT_OK;
-}