1From 2140aa879c24dcc9dad7e733c77c1bb212fe1ddf Mon Sep 17 00:00:00 2001 2From: =?UTF-8?q?Gu=C3=B0ni=20M=C3=A1r=20Gilbert?= <gudni.m.g@gmail.com> 3Date: Sun, 30 Mar 2025 02:20:24 +0000 4Subject: [PATCH] bluez5: disable aics tests 5MIME-Version: 1.0 6Content-Type: text/plain; charset=UTF-8 7Content-Transfer-Encoding: 8bit 8 9Temporarily disable aics tests as they can fail 10depending on how the tests are executed. Sometimes they pass, 11sometimes they fail. The issue has been observed since BlueZ 5.72 to 5.80 12 13Starting with BlueZ 5.80, the tests began failing when using the 14ptest-runner script. This is not a new issue in BlueZ 5.80 which is 15why the test is disabled with this commit until a solution is found. 16 17See discussion on Github: 18https://github.com/bluez/bluez/issues/726 19https://github.com/bluez/bluez/issues/683 20 21Upstream-Status: Inappropriate [OE-Specific] 22 23Signed-off-by: Guðni Már Gilbert <gudni.m.g@gmail.com> 24--- 25 unit/test-vcp.c | 2 +- 26 1 file changed, 1 insertion(+), 1 deletion(-) 27 28diff --git a/unit/test-vcp.c b/unit/test-vcp.c 29index 6a61ea2..04b92e4 100644 30--- a/unit/test-vcp.c 31+++ b/unit/test-vcp.c 32@@ -2754,7 +2754,7 @@ int main(int argc, char *argv[]) 33 tester_init(&argc, &argv); 34 35 test_vocs_unit_testcases(); 36- test_aics_unit_testcases(); 37+ //test_aics_unit_testcases(); 38 39 return tester_run(); 40 } 41