test/renderer: add thread system to basic init

This commit is contained in:
Andrei Alexeyev 2024-08-21 23:22:45 +02:00
parent dcac5d9ec9
commit df5d68f253
No known key found for this signature in database
GPG key ID: 72D26128040B9690

View file

@ -27,6 +27,7 @@ static void test_init_sdl(void) {
static void test_init_basic(void) {
setlocale(LC_ALL, "C");
thread_init();
test_init_log();
test_init_sdl();
}
@ -34,6 +35,7 @@ static void test_init_basic(void) {
static void test_shutdown_basic(void) {
log_shutdown();
events_shutdown();
thread_shutdown();
SDL_Quit();
}