diff -r 0711d869ce4d -r 5136f2fc32ec tests/test_list.c --- a/tests/test_list.c Fri Jan 12 20:24:29 2024 +0100 +++ b/tests/test_list.c Sat Jan 13 17:51:42 2024 +0100 @@ -1086,8 +1086,9 @@ CX_TEST_CALL_SUBROUTINE(test_list_verify_swap, list, isptrlist, true); CX_DISABLE_LINKED_LIST_SWAP_SBO = false; } else { - // TODO: currently, SBO for swap operation cannot be disabled for array lists - CX_TEST_ASSERT(true); + CX_DISABLE_ARRAY_LIST_SWAP_SBO = true; + CX_TEST_CALL_SUBROUTINE(test_list_verify_swap, list, isptrlist, false); + CX_DISABLE_ARRAY_LIST_SWAP_SBO = false; } })