Add cases testing message size verification for MAP client opcodes. --- android/ipc-tester.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/android/ipc-tester.c b/android/ipc-tester.c index 7dd25e8..357dda9 100644 --- a/android/ipc-tester.c +++ b/android/ipc-tester.c @@ -1486,5 +1486,19 @@ int main(int argc, char *argv[]) HAL_SERVICE_ID_BLUETOOTH, HAL_SERVICE_ID_HANDSFREE_CLIENT); + /* check for valid data size for MAP CLIENT */ + test_datasize_valid("MAP CLIENT Get instances+", + HAL_SERVICE_ID_MAP_CLIENT, + HAL_OP_MAP_CLIENT_GET_INSTANCES, + sizeof(struct hal_cmd_map_client_get_instances), + 1, HAL_SERVICE_ID_BLUETOOTH, + HAL_SERVICE_ID_MAP_CLIENT); + test_datasize_valid("MAP CLIENT Get instances-", + HAL_SERVICE_ID_MAP_CLIENT, + HAL_OP_MAP_CLIENT_GET_INSTANCES, + sizeof(struct hal_cmd_map_client_get_instances), + -1, HAL_SERVICE_ID_BLUETOOTH, + HAL_SERVICE_ID_MAP_CLIENT); + return tester_run(); } -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html