From c318d0e0e4731e49f96d86c9bc4c8268f394537c Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Thu, 12 Dec 2013 17:17:47 +0200 Subject: [PATCH] android/tester: Add Socket test invalid params: chan and uuid 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 f34b4ac97..df673c43d 100644 --- a/android/android-tester.c +++ b/android/android-tester.c @@ -699,6 +699,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(); @@ -778,5 +788,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(); } -- 2.47.3