Diff between 427f6eea4d46c59e5801107f5662923ccd9f6909 and c318d0e0e4731e49f96d86c9bc4c8268f394537c

Changed Files

File Additions Deletions Status
android/android-tester.c +14 -0 modified

Full Patch

diff --git a/android/android-tester.c b/android/android-tester.c
index f34b4ac..df673c4 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();
 }