about summary refs log tree commit diff
path: root/boot/tests/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'boot/tests/test.c')
-rw-r--r--boot/tests/test.c2
1 files changed, 1 insertions, 1 deletions
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;
     }