Commit 8212c7802 for llama.cpp
commit 8212c7802455255460ab8e18fc34754560031b34
Author: kurquhar <kurquhar@qti.qualcomm.com>
Date: Thu Sep 24 08:29:41 2026 -0700
test: flush status (#28352)
diff --git a/tests/test-backend-ops.cpp b/tests/test-backend-ops.cpp
index e198d0922..917faabfa 100644
--- a/tests/test-backend-ops.cpp
+++ b/tests/test-backend-ops.cpp
@@ -845,6 +845,7 @@ struct console_printer : public printer {
} else if (result.test_mode == "support") {
print_support_console(result);
}
+ fflush(stdout);
}
void print_operation(const test_operation_info & info) override {
@@ -854,6 +855,7 @@ struct console_printer : public printer {
// Handle large tensor skip first
if (info.is_large_tensor_skip) {
printf("skipping large tensors for speed \n");
+ fflush(stdout);
return;
}
@@ -864,6 +866,7 @@ struct console_printer : public printer {
} else {
printf("not supported [%s]\n", info.backend_name.c_str());
}
+ fflush(stdout);
return;
}
@@ -900,6 +903,7 @@ struct console_printer : public printer {
} else {
printf("\033[1;31mFAIL\033[0m\n");
}
+ fflush(stdout);
}
void print_summary(const test_summary_info & info) override {