Skip to content

Commit

Permalink
Ensure start-of-unit-test-message is flushed
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen-Seo committed Jan 6, 2025
1 parent ee3c160 commit 3fdc97d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/data_structures/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ void test_iter_fn_priority_heap(void *data, void *user_data) {

int main(void) {
puts("Begin data-structures unit test.");
fflush(stdout);

// Test LinkedList.
{
Expand Down
1 change: 1 addition & 0 deletions src/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ static int32_t checks_passed = 0;

int main(void) {
puts("Begin unit test.");
fflush(stdout);

// Test parser.
{
Expand Down

0 comments on commit 3fdc97d

Please sign in to comment.