diff options
| -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; |
