Skip to content

Commit

Permalink
testprocess: Log on every iteration
Browse files Browse the repository at this point in the history
Helps: libsdl-org#11006
Signed-off-by: Simon McVittie <[email protected]>
  • Loading branch information
smcv committed Sep 30, 2024
1 parent 53d9c34 commit d44e805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testprocess.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d44e805

Please sign in to comment.