implemented append_log() and some internal maintenance stuff

This commit is contained in:
jlamothe
2023-11-07 04:33:22 +00:00
parent 870f1b619b
commit 3900a39205
2 changed files with 93 additions and 1 deletions

View File

@@ -63,4 +63,11 @@ extern void run_tests(
void (*)(TestState *)
);
// Adds an entry to the log that is displayed after the tests have
// completed
extern void append_log(
TestState *, // the current state
const char * // the message to append
);
//jl