mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
e353433cd8
Co-authored-by: あく <alleteam@gmail.com>
39 lines
1,009 B
C
39 lines
1,009 B
C
#include "../minunit.h"
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
|
|
void test_furi_memmgr() {
|
|
void* ptr;
|
|
|
|
// allocate memory case
|
|
ptr = malloc(100);
|
|
mu_check(ptr != NULL);
|
|
// test that memory is zero-initialized after allocation
|
|
for(int i = 0; i < 100; i++) {
|
|
mu_assert_int_eq(0, ((uint8_t*)ptr)[i]);
|
|
}
|
|
free(ptr);
|
|
|
|
// reallocate memory case
|
|
ptr = malloc(100);
|
|
memset(ptr, 66, 100);
|
|
ptr = realloc(ptr, 200);
|
|
mu_check(ptr != NULL);
|
|
|
|
// test that memory is really reallocated
|
|
for(int i = 0; i < 100; i++) {
|
|
mu_assert_int_eq(66, ((uint8_t*)ptr)[i]);
|
|
}
|
|
|
|
// TODO FL-3492: fix realloc to copy only old size, and write testcase that leftover of reallocated memory is zero-initialized
|
|
free(ptr);
|
|
|
|
// allocate and zero-initialize array (calloc)
|
|
ptr = calloc(100, 2);
|
|
mu_check(ptr != NULL);
|
|
for(int i = 0; i < 100 * 2; i++) {
|
|
mu_assert_int_eq(0, ((uint8_t*)ptr)[i]);
|
|
}
|
|
free(ptr);
|
|
}
|