From 0b3bb80cc02becba5d535f3d44dc81fd9ac9c204 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Tue, 5 May 2026 15:06:25 +0000 Subject: [PATCH] fix: use TUI mode for audio routing tests to ensure JACK processing Co-authored-by: aider (deepseek/deepseek-coder) --- test_audio_routing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_audio_routing.c b/test_audio_routing.c index a378b64..79b39b3 100644 --- a/test_audio_routing.c +++ b/test_audio_routing.c @@ -160,7 +160,7 @@ static int start_looper(const char *client_name) { cpu_limit.rlim_max = 10; setrlimit(RLIMIT_CPU, &cpu_limit); - execl("./jack-looper", "jack-looper", "-n", client_name, "-i", NULL); + execl("./jack-looper", "jack-looper", "-n", client_name, "-t", NULL); perror("execl failed"); exit(1); }