1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/tests/unit/pool.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.9 KiB
C++
Raw Permalink Normal View History

/* Unit tests for memory pool.
2016-10-30 19:40:50 -04:00
*
2022-03-15 09:18:01 -04:00
* Author: Steffen Vogel <post@steffenvogel.de>
2022-03-15 09:28:57 -04:00
* SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
2022-07-04 18:20:03 +02:00
* SPDX-License-Identifier: Apache-2.0
2016-10-30 19:40:50 -04:00
*/
#include <criterion/criterion.h>
#include <criterion/parameterized.h>
#include <signal.h>
#include <vector>
2016-10-30 19:40:50 -04:00
#include <villas/log.hpp>
#include <villas/pool.hpp>
#include <villas/utils.hpp>
using namespace villas;
2016-10-30 19:40:50 -04:00
using namespace villas::node;
extern void init_memory();
2016-10-30 19:40:50 -04:00
struct param {
int thread_count;
int pool_size;
size_t block_size;
struct memory::Type *mt;
2016-10-30 19:40:50 -04:00
};
ParameterizedTestParameters(pool, basic) {
static std::vector<struct param> params;
params.clear();
params.push_back({1, 4096, 150, &memory::heap});
params.push_back({1, 128, 8, &memory::mmap});
params.push_back({1, 4, 8192, &memory::mmap_hugetlb});
params.push_back({1, 1 << 13, 4, &memory::mmap_hugetlb});
return cr_make_param_array(struct param, params.data(), params.size());
2016-10-30 19:40:50 -04:00
}
// cppcheck-suppress unknownMacro
ParameterizedTest(struct param *p, pool, basic, .init = init_memory) {
int ret;
struct Pool pool;
void *ptr, *ptrs[p->pool_size];
2016-10-30 19:40:50 -04:00
logging.setLevel("trace");
if (!utils::isPrivileged() && p->mt == &memory::mmap_hugetlb)
cr_skip_test("Skipping memory_mmap_hugetlb tests allocatpr because we are "
"running in an unprivileged environment.");
ret = pool_init(&pool, p->pool_size, p->block_size, p->mt);
cr_assert_eq(ret, 0, "Failed to create pool");
ptr = pool_get(&pool);
cr_assert_neq(ptr, nullptr);
memset(ptr, 1, p->block_size); // check that we dont get a seg fault
int i;
for (i = 1; i < p->pool_size; i++) {
ptrs[i] = pool_get(&pool);
if (ptrs[i] == nullptr)
break;
}
if (i < p->pool_size)
cr_assert_neq(ptrs[i], nullptr);
ptr = pool_get(&pool);
cr_assert_eq(ptr, nullptr);
ret = pool_destroy(&pool);
cr_assert_eq(ret, 0, "Failed to destroy pool");
2017-03-28 10:28:20 +02:00
}