diff options
| author | Mel <mel@rnrd.eu> | 2025-07-04 23:36:03 +0200 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2025-07-04 23:36:03 +0200 |
| commit | cfbb769306fea6433c1d3e568a4f9742883a0cc9 (patch) | |
| tree | d6be35d2dbd760ca36aab58140522c9af946bfe1 | |
| parent | 36d20bebd14acb83c9160b05c3946af8e96e2a18 (diff) | |
| download | catskill-cfbb769306fea6433c1d3e568a4f9742883a0cc9.tar.zst catskill-cfbb769306fea6433c1d3e568a4f9742883a0cc9.zip | |
Print completed single test result
Signed-off-by: Mel <mel@rnrd.eu>
| -rw-r--r-- | boot/tests/test.c | 3 |
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; |
