forked from ArduPilot/ardupilot
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AP_MultiHeap: added simple unit test
- Loading branch information
Showing
2 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env python | ||
# encoding: utf-8 | ||
|
||
def build(bld): | ||
bld.ap_find_tests( | ||
use='ap', | ||
DOUBLE_PRECISION_SOURCES = [] | ||
) |