From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> For the socket listen() call parameters channel and uuid cannot be both zeroes. --- android/android-tester.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/android/android-tester.c b/android/android-tester.c index a50ed7b..3f763d8 100644 --- a/android/android-tester.c +++ b/android/android-tester.c @@ -716,6 +716,16 @@ static const struct socket_data btsock_inv_param_socktype_l2cap = { .expected_status = BT_STATUS_UNSUPPORTED, }; +/* Test invalid: channel & uuid are both zeroes */ +static const struct socket_data btsock_inv_params_chan_uuid = { + .sock_type = BTSOCK_RFCOMM, + .channel = 0, + .service_uuid = NULL, + .service_name = "Test service", + .flags = 0, + .expected_status = BT_STATUS_PARM_INVALID, +}; + static void setup_socket_interface(const void *test_data) { struct test_data *data = tester_get_data(); @@ -795,5 +805,9 @@ int main(int argc, char *argv[]) &btsock_inv_param_socktype_l2cap, setup_socket_interface, test_generic_listen, teardown); + test_bredrle("Test Socket Listen - Invalid: chan, uuid", + &btsock_inv_params_chan_uuid, + 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