AP_MultiHeap: added simple unit test

This commit is contained in:
Andrew Tridgell 2024-11-18 12:11:24 +11:00
parent 08761e6066
commit 19c9964e55
2 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,57 @@
#include <AP_gtest.h>
#include <AP_MultiHeap/AP_MultiHeap.h>
#include <AP_HAL/AP_HAL.h>
#include <AP_Math/AP_Math.h>
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
TEST(MultiHeap, Tests)
{
static MultiHeap h;
EXPECT_TRUE(h.create(150000, 10, true, 10000));
EXPECT_TRUE(h.available());
const uint32_t max_allocs = 1000;
struct alloc {
void *ptr;
uint32_t size;
};
auto *allocs = new alloc[max_allocs];
allocs[0].size = 640;
allocs[0].ptr = h.allocate(allocs[0].size);
for (uint32_t i=1; i<2; i++) {
auto &a = allocs[i];
a.size = 30;
a.ptr = h.allocate(a.size);
}
allocs[0].ptr = h.change_size(allocs[0].ptr, allocs[0].size, 50);
allocs[0].size = 50;
for (uint32_t i=0; i<5000; i++) {
uint16_t idx = get_random16() % max_allocs;
auto &a = allocs[idx];
if (a.ptr == nullptr) {
const uint16_t size = get_random16() % 150;
a.ptr = h.allocate(size);
//printf("a.ptr=%p %u -> %u\n", a.ptr, a.size, size);
EXPECT_TRUE(size==0?a.ptr == nullptr : a.ptr != nullptr);
a.size = size;
} else {
const uint16_t size = get_random16() % 150;
a.ptr = h.change_size(a.ptr, a.size, size);
//printf("a.ptr=%p %u -> %u\n", a.ptr, a.size, size);
EXPECT_TRUE(size==0?a.ptr == nullptr : a.ptr != nullptr);
a.size = size;
}
}
for (uint32_t i=0; i<max_allocs; i++) {
auto &a = allocs[i];
h.deallocate(a.ptr);
a.size = 0;
}
h.destroy();
delete[] allocs;
}
AP_GTEST_MAIN()

View File

@ -0,0 +1,8 @@
#!/usr/bin/env python
# encoding: utf-8
def build(bld):
bld.ap_find_tests(
use='ap',
DOUBLE_PRECISION_SOURCES = []
)