printf: add fflush(stdout) at the end (#2103)

Some platforms (Windows in our case) seem to need this.
This commit is contained in:
Sreelakshmi Haridas Maruthur
2024-11-26 10:25:01 -07:00
committed by GitHub
parent 1102e0bccf
commit d3b9520adc

View File

@@ -689,6 +689,7 @@ static void print_results(int failed, int count, const char *name)
log_error("FAILED %s.\n", name); log_error("FAILED %s.\n", name);
} }
} }
fflush(stdout);
} }
int parseAndCallCommandLineTests(int argc, const char *argv[], int parseAndCallCommandLineTests(int argc, const char *argv[],