about summary refs log tree commit diff
path: root/boot/tests
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2025-07-04 23:36:03 +0200
committerMel <mel@rnrd.eu>2025-07-04 23:36:03 +0200
commitcfbb769306fea6433c1d3e568a4f9742883a0cc9 (patch)
treed6be35d2dbd760ca36aab58140522c9af946bfe1 /boot/tests
parent36d20bebd14acb83c9160b05c3946af8e96e2a18 (diff)
downloadcatskill-cfbb769306fea6433c1d3e568a4f9742883a0cc9.tar.zst
catskill-cfbb769306fea6433c1d3e568a4f9742883a0cc9.zip
Print completed single test result
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'boot/tests')
-rw-r--r--boot/tests/test.c3
1 files changed, 3 insertions, 0 deletions
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;