switch-pico/tests/firmware/test_main.cpp
Joey Yakimowich-Payne 01cf6ed26f Enable firmware tests
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-08-11 12:23:07 +09:00

12 lines
333 B
C++

#include "test_support.h"
int main() {
TestRunner runner;
run_legacy_descriptor_tests(runner);
run_switch2_command_tests(runner);
run_switch2_descriptor_tests(runner);
run_switch2_report_tests(runner);
run_switch_input_tests(runner);
run_switch_uart_protocol_tests(runner);
return runner.result();
}