We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e63520f commit 33322e8Copy full SHA for 33322e8
tests/test-chat-template.cpp
@@ -291,6 +291,7 @@ int main(void) {
291
printf("Expected:\n%s\n", test_case.expected_output.c_str());
292
printf("-------------------------\n");
293
printf("Actual:\n%s\n", output.c_str());
294
+ fflush(stdout);
295
assert(output == test_case.expected_output);
296
}
297
@@ -315,6 +316,7 @@ int main(void) {
315
316
printf("Expected:\n%s\n", expected_output.c_str());
317
318
319
320
assert(output == expected_output);
321
322
} catch (const std::exception & e) {
0 commit comments