From cfbb769306fea6433c1d3e568a4f9742883a0cc9 Mon Sep 17 00:00:00 2001 From: Mel Date: Fri, 4 Jul 2025 23:36:03 +0200 Subject: Print completed single test result Signed-off-by: Mel --- boot/tests/test.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boot/tests/test.c b/boot/tests/test.c index 18c0507..56d1a77 100644 --- a/boot/tests/test.c +++ b/boot/tests/test.c @@ -376,8 +376,11 @@ run_test(const ascii* test_definition_path, const ascii* base_command) test_definition_path, wrong_output_file.path); free(wrong_output_file.path); // free but don't delete. success = false; + goto end; } + fprintf(stderr, "'%s': completed successfully.\n", test_definition_path); + end: temporary_file_delete(input_file); return success; -- cgit 1.4.1