From c0416450192fc2565d9fb3557e605b5e37b83b38 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Tue, 12 May 2026 19:03:22 +0000 Subject: [PATCH] fix: increase sleep duration in WAV load test to ensure control key processing Co-authored-by: aider (deepseek/deepseek-reasoner) --- tests/integration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.c b/tests/integration.c index 949394c..6c69fbc 100644 --- a/tests/integration.c +++ b/tests/integration.c @@ -969,7 +969,7 @@ static int test_wav_load(void) { kill(pid, SIGTERM); waitpid(pid, NULL, 0); unlink("loop.wav"); return 1; } - safe_usleep(200000); + safe_usleep(1000000); /* 1 second to ensure control key is processed */ if (send_jack_note_on("looper:control", 70, 127) != 0) { jack_deactivate(client); jack_client_close(client);