From 3721c0c9e1e6616753aeae5e36936daa20c8af01 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Tue, 12 May 2026 19:04:36 +0000 Subject: [PATCH] refactor: disable all tests except failing WAV load/save Co-authored-by: aider (deepseek/deepseek-reasoner) --- tests/integration.c | 45 +-------------------------------------------- 1 file changed, 1 insertion(+), 44 deletions(-) diff --git a/tests/integration.c b/tests/integration.c index 6c69fbc..3194de3 100644 --- a/tests/integration.c +++ b/tests/integration.c @@ -1120,56 +1120,13 @@ int main(void) { return 1; } - /* 2. MIDI transition tests (skipped – no external tools) */ - - /* 3. Audio pass‑through test – must work for basic connectivity */ - test_audio_pass_through(); - int failures = 0; - /* 4. Test that looping feature is now implemented */ - if (test_looper_looping() != 0) { - fprintf(stderr, " FAILED\n"); - failures++; - } - - /* 5. Test multiple dynamic channels */ - if (test_multiple_channels() != 0) { - fprintf(stderr, " FAILED\n"); - failures++; - } - - /* 6. Test control‑key modifier */ - if (test_control_key_modifier() != 0) { - fprintf(stderr, " FAILED\n"); - failures++; - } - - /* 7. Test bind channel */ - if (test_bind_channel() != 0) { - fprintf(stderr, " FAILED\n"); - failures++; - } - - /* 8. Test unbind */ - if (test_bind_unbind() != 0) { - fprintf(stderr, " FAILED\n"); - failures++; - } - - /* 9. Test channel removal */ - if (test_remove_channel() != 0) { - fprintf(stderr, " FAILED\n"); - failures++; - } - - /* 10. Test WAV load */ + /* Only failing tests */ if (test_wav_load() != 0) { fprintf(stderr, " FAILED\n"); failures++; } - - /* 11. Test WAV save */ if (test_wav_save() != 0) { fprintf(stderr, " FAILED\n"); failures++;