From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> Test for zero bluetooth address in connect(). --- android/android-tester.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/android/android-tester.c b/android/android-tester.c index 9acc79d..eb938d0 100644 --- a/android/android-tester.c +++ b/android/android-tester.c @@ -832,6 +832,16 @@ static const struct socket_data btsock_success_check_chan = { .test_channel = true, }; +static const struct socket_data btsock_inv_param_bdaddr = { + .bdaddr = NULL, + .sock_type = BTSOCK_RFCOMM, + .channel = 1, + .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(); @@ -1075,5 +1085,9 @@ int main(int argc, char *argv[]) &btsock_inv_params_chan_uuid, setup_socket_interface, test_generic_connect, teardown); + test_bredrle("Socket Connect - Invalid: bdaddr", + &btsock_inv_param_bdaddr, + setup_socket_interface, test_generic_connect, 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