From 6d186ac284cf35ab42e21c2538947b8786373a21 Mon Sep 17 00:00:00 2001 From: Mel Date: Fri, 4 Jul 2025 19:00:54 +0200 Subject: Do not remove failed test artifact file for inspection Signed-off-by: Mel --- boot/tests/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/tests/test.c b/boot/tests/test.c index 5c0eb90..18c0507 100644 --- a/boot/tests/test.c +++ b/boot/tests/test.c @@ -374,7 +374,7 @@ run_test(const ascii* test_definition_path, const ascii* base_command) struct Temporary_File wrong_output_file = temporary_file_from_string(output); fprintf(stderr, "'%s': completed with incorrect output. written to %s.\n", test_definition_path, wrong_output_file.path); - temporary_file_delete(wrong_output_file); + free(wrong_output_file.path); // free but don't delete. success = false; } -- cgit 1.4.1