From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> Check that we get BT_STATUS_UNSUPPORTED for socket type BTSOCK_L2CAP. --- android/android-tester.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/android/android-tester.c b/android/android-tester.c index f5df0df..a50ed7b 100644 --- a/android/android-tester.c +++ b/android/android-tester.c @@ -707,6 +707,15 @@ static const struct socket_data btsock_inv_param_socktype = { .expected_status = BT_STATUS_PARM_INVALID, }; +static const struct socket_data btsock_inv_param_socktype_l2cap = { + .sock_type = BTSOCK_L2CAP, + .channel = 1, + .service_uuid = NULL, + .service_name = "Test service", + .flags = 0, + .expected_status = BT_STATUS_UNSUPPORTED, +}; + static void setup_socket_interface(const void *test_data) { struct test_data *data = tester_get_data(); @@ -782,5 +791,9 @@ int main(int argc, char *argv[]) &btsock_inv_param_socktype, setup_socket_interface, test_generic_listen, teardown); + test_bredrle("Test Socket Listen - Invalid: L2CAP", + &btsock_inv_param_socktype_l2cap, + setup_socket_interface, test_generic_listen, teardown); + return tester_run(); } -- 1.8.3.2 -- 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