From d44e805855f9c850c0f9dfa3e60c96ab0f1d67bc Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 30 Sep 2024 16:19:43 +0100 Subject: [PATCH] testprocess: Log on every iteration Helps: https://github.com/libsdl-org/SDL/issues/11006 Signed-off-by: Simon McVittie --- test/testprocess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testprocess.c b/test/testprocess.c index 67c5a88cefb6a..3ce05bbcb277e 100644 --- a/test/testprocess.c +++ b/test/testprocess.c @@ -455,7 +455,7 @@ static int process_testStdinToStdout(void *arg) total_written = 0; total_read = 0; for (iteration_count = 0; true; iteration_count++) { - int log_this_iteration = (iteration_count % 32) == 0; + bool log_this_iteration = true; char local_buffer[16 * 4094]; size_t amount_read; SDL_IOStatus io_status;