2022-12-05 22:57:43 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "unity.h"
|
|
|
|
#include "unity_test_runner.h"
|
2023-06-21 07:00:59 -04:00
|
|
|
#include "unity_test_utils.h"
|
2022-12-05 22:57:43 -05:00
|
|
|
#include "esp_heap_caps.h"
|
|
|
|
|
|
|
|
// Some resources are lazy allocated in pulse_cnt driver, the threshold is left for that case
|
2023-06-21 07:00:59 -04:00
|
|
|
#define TEST_MEMORY_LEAK_THRESHOLD (400)
|
2022-12-05 22:57:43 -05:00
|
|
|
|
|
|
|
void setUp(void)
|
|
|
|
{
|
2023-06-21 07:00:59 -04:00
|
|
|
unity_utils_record_free_mem();
|
2022-12-05 22:57:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void tearDown(void)
|
|
|
|
{
|
2023-06-21 07:00:59 -04:00
|
|
|
esp_reent_cleanup(); //clean up some of the newlib's lazy allocations
|
|
|
|
unity_utils_evaluate_leaks_direct(TEST_MEMORY_LEAK_THRESHOLD);
|
2022-12-05 22:57:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void app_main(void)
|
|
|
|
{
|
|
|
|
// ____ _ _ _ ___ ___ _____ _
|
|
|
|
// | _ \ __ _ _ __ __ _| | | ___| | |_ _/ _ \ |_ _|__ ___| |_
|
|
|
|
// | |_) / _` | '__/ _` | | |/ _ \ | | | | | | | |/ _ \/ __| __|
|
|
|
|
// | __/ (_| | | | (_| | | | __/ | | | |_| | | | __/\__ \ |_
|
|
|
|
// |_| \__,_|_| \__,_|_|_|\___|_| |___\___/ |_|\___||___/\__|
|
|
|
|
printf(" ____ _ _ _ ___ ___ _____ _\r\n");
|
|
|
|
printf("| _ \\ __ _ _ __ __ _| | | ___| | |_ _/ _ \\ |_ _|__ ___| |_\r\n");
|
|
|
|
printf("| |_) / _` | '__/ _` | | |/ _ \\ | | | | | | | |/ _ \\/ __| __|\r\n");
|
|
|
|
printf("| __/ (_| | | | (_| | | | __/ | | | |_| | | | __/\\__ \\ |_\r\n");
|
|
|
|
printf("|_| \\__,_|_| \\__,_|_|_|\\___|_| |___\\___/ |_|\\___||___/\\__|\r\n");
|
|
|
|
unity_run_menu();
|
|
|
|
}
|