From c7678d60849080f126e64cfaf0f9c72bbdb270d8 Mon Sep 17 00:00:00 2001 From: ismail Date: Tue, 22 Jul 2025 10:00:33 +0300 Subject: [PATCH] Add restart chip to make qemu exit in tests. --- test_apps/main/test_app_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test_apps/main/test_app_main.c b/test_apps/main/test_app_main.c index c60c8d2..c72d68f 100644 --- a/test_apps/main/test_app_main.c +++ b/test_apps/main/test_app_main.c @@ -44,4 +44,6 @@ void app_main(void) UNITY_END(); ESP_LOGI(TEST_TAG, "All tests complete."); + + esp_restart(); // Restart to invoke qemu exit }