mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
#include <furi.h>
|
|
#include <furi_hal.h>
|
|
#include <cli/cli.h>
|
|
|
|
#include "test_runner.h"
|
|
|
|
void unit_tests_cli(Cli* cli, FuriString* args, void* context) {
|
|
UNUSED(cli);
|
|
UNUSED(context);
|
|
|
|
TestRunner* test_runner = test_runner_alloc(cli, args);
|
|
test_runner_run(test_runner);
|
|
test_runner_free(test_runner);
|
|
}
|
|
|
|
static void unit_tests_pending(void* context, uint32_t arg) {
|
|
UNUSED(arg);
|
|
FuriThread* thread = context;
|
|
furi_thread_join(thread);
|
|
furi_thread_free(thread);
|
|
}
|
|
|
|
static int32_t unit_tests_thread(void* context) {
|
|
furi_delay_ms(5000);
|
|
FuriString* args = furi_string_alloc();
|
|
TestRunner* test_runner = test_runner_alloc(NULL, args);
|
|
test_runner_run(test_runner);
|
|
test_runner_free(test_runner);
|
|
furi_string_free(args);
|
|
furi_timer_pending_callback(unit_tests_pending, context, 0);
|
|
return 0;
|
|
}
|
|
|
|
void unit_tests_on_system_start(void) {
|
|
#ifdef SRV_CLI
|
|
Cli* cli = furi_record_open(RECORD_CLI);
|
|
cli_add_command(cli, "unit_tests", CliCommandFlagParallelSafe, unit_tests_cli, NULL);
|
|
furi_record_close(RECORD_CLI);
|
|
#endif
|
|
if(furi_hal_is_normal_boot()) {
|
|
FuriThread* thread = furi_thread_alloc_ex("UnitTests", 4 * 1024, unit_tests_thread, NULL);
|
|
furi_thread_set_context(thread, thread);
|
|
furi_thread_start(thread);
|
|
}
|
|
}
|