esp-idf/components/spi_flash/test_apps/flash_mmap/main/test_app_main.c

54 wiersze
1.8 KiB
C

/*
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Unlicense OR CC0-1.0
*/
#include "unity.h"
#include "unity_test_utils.h"
#include "esp_heap_caps.h"
// Some resources are lazy allocated, the threadhold is left for that case
#define TEST_MEMORY_LEAK_THRESHOLD (600)
static size_t before_free_8bit;
static size_t before_free_32bit;
void setUp(void)
{
before_free_8bit = heap_caps_get_free_size(MALLOC_CAP_8BIT);
before_free_32bit = heap_caps_get_free_size(MALLOC_CAP_32BIT);
}
void tearDown(void)
{
size_t after_free_8bit = heap_caps_get_free_size(MALLOC_CAP_8BIT);
size_t after_free_32bit = heap_caps_get_free_size(MALLOC_CAP_32BIT);
unity_utils_check_leak(before_free_8bit, after_free_8bit, "8BIT", TEST_MEMORY_LEAK_THRESHOLD);
unity_utils_check_leak(before_free_32bit, after_free_32bit, "32BIT", TEST_MEMORY_LEAK_THRESHOLD);
}
void app_main(void)
{
/*
______ _ ___ _____ _ _ ___ ______ ___ ___ ______
| ___| | / _ \ / ___| | | | | \/ || \/ | / _ \ | ___ \
| |_ | | / /_\ \\ `--.| |_| | | . . || . . |/ /_\ \| |_/ /
| _| | | | _ | `--. \ _ | | |\/| || |\/| || _ || __/
| | | |____| | | |/\__/ / | | | | | | || | | || | | || |
\_| \_____/\_| |_/\____/\_| |_/ \_| |_/\_| |_/\_| |_/\_|
*/
printf("______ _ ___ _____ _ _ ___ ______ ___ ___ ______\n");
printf("| ___| | / _ \\ / ___| | | | | \\/ || \\/ | / _ \\ | ___ \\\n");
printf("| |_ | | / /_\\ \\\\ `--.| |_| | | . . || . . |/ /_\\ \\| |_/ /\n");
printf("| _| | | | _ | `--. \\ _ | | |\\/| || |\\/| || _ || __/\n");
printf("| | | |____| | | |/\\__/ / | | | | | | || | | || | | || |\n");
printf("\\_| \\_____/\\_| |_/\\____/\\_| |_/ \\_| |_/\\_| |_/\\_| |_/\\_|\n");
unity_run_menu();
}