ESP-Miner/test-ci/main/unit_test_all.c
Erik Olof Gunnar Andersson c8671cf69c
Enable Unit Test CI (#634)
* Enable Unit Test CI

* Remove non-functional entrypoint

* symlink CMakeLists.txt
2025-01-27 18:25:38 +01:00

26 lines
613 B
C

#include <stdio.h>
#include <string.h>
#include "unity.h"
static void print_banner(const char *text);
void app_main(void)
{
print_banner("Running all the registered tests");
UNITY_BEGIN();
unity_run_tests_by_tag("[not-on-qemu]", true);
UNITY_END();
// print_banner("Starting interactive test menu");
/* This function will not return, and will be busy waiting for UART input.
* Make sure that task watchdog is disabled if you use this function.
*/
// unity_run_menu();
exit(0);
}
static void print_banner(const char *text)
{
printf("\n#### %s #####\n\n", text);
}