All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] android/tester: Explicit set of io capabilities for SSP pairing tests
@ 2014-09-24  8:39 Jakub Tyszkowski
  2014-09-24 19:40 ` Szymon Janc
  0 siblings, 1 reply; 2+ messages in thread
From: Jakub Tyszkowski @ 2014-09-24  8:39 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Jakub Tyszkowski

Those tests are periodically broken every time default io capabalities
are changed. This patch sets them explicitely to avoid this breakage.
---
 android/tester-bluetooth.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/android/tester-bluetooth.c b/android/tester-bluetooth.c
index a97e28e..2be824d 100644
--- a/android/tester-bluetooth.c
+++ b/android/tester-bluetooth.c
@@ -448,6 +448,10 @@ static  struct bt_action_data no_input_no_output_io_cap = {
 	.io_cap = 0x03,
 };
 
+static  struct bt_action_data display_yes_no_io_cap = {
+	.io_cap = 0x01,
+};
+
 static uint16_t test_conn_handle = 0;
 
 static void conn_cb(uint16_t handle, void *user_data)
@@ -1034,6 +1038,7 @@ static struct test_case test_cases[] = {
 		CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_ON),
 		ACTION_SUCCESS(emu_setup_powered_remote_action, NULL),
 		ACTION_SUCCESS(emu_set_ssp_mode_action, NULL),
+		ACTION_SUCCESS(emu_set_io_cap, &display_yes_no_io_cap),
 		ACTION_SUCCESS(bt_start_discovery_action, NULL),
 		CALLBACK_STATE(CB_BT_DISCOVERY_STATE_CHANGED,
 							BT_DISCOVERY_STARTED),
@@ -1057,6 +1062,7 @@ static struct test_case test_cases[] = {
 		CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_ON),
 		ACTION_SUCCESS(emu_setup_powered_remote_action, NULL),
 		ACTION_SUCCESS(emu_set_ssp_mode_action, NULL),
+		ACTION_SUCCESS(emu_set_io_cap, &display_yes_no_io_cap),
 		ACTION_SUCCESS(bt_start_discovery_action, NULL),
 		CALLBACK_STATE(CB_BT_DISCOVERY_STATE_CHANGED,
 							BT_DISCOVERY_STARTED),
@@ -1081,6 +1087,7 @@ static struct test_case test_cases[] = {
 		CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_ON),
 		ACTION_SUCCESS(emu_setup_powered_remote_action, NULL),
 		ACTION_SUCCESS(emu_set_ssp_mode_action, NULL),
+		ACTION_SUCCESS(emu_set_io_cap, &display_yes_no_io_cap),
 		ACTION_SUCCESS(bt_create_bond_action,
 					&prop_test_remote_ble_bdaddr_req),
 		CALLBACK_BOND_STATE(BT_BOND_STATE_BONDING,
@@ -1113,6 +1120,7 @@ static struct test_case test_cases[] = {
 		CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_ON),
 		ACTION_SUCCESS(emu_setup_powered_remote_action, NULL),
 		ACTION_SUCCESS(emu_set_ssp_mode_action, NULL),
+		ACTION_SUCCESS(emu_set_io_cap, &display_yes_no_io_cap),
 		ACTION_SUCCESS(bt_start_discovery_action, NULL),
 		CALLBACK_STATE(CB_BT_DISCOVERY_STATE_CHANGED,
 							BT_DISCOVERY_STARTED),
@@ -1138,6 +1146,7 @@ static struct test_case test_cases[] = {
 		CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_ON),
 		ACTION_SUCCESS(emu_setup_powered_remote_action, NULL),
 		ACTION_SUCCESS(emu_set_ssp_mode_action, NULL),
+		ACTION_SUCCESS(emu_set_io_cap, &display_yes_no_io_cap),
 		ACTION_SUCCESS(bt_start_discovery_action, NULL),
 		CALLBACK_STATE(CB_BT_DISCOVERY_STATE_CHANGED,
 							BT_DISCOVERY_STARTED),
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] android/tester: Explicit set of io capabilities for SSP pairing tests
  2014-09-24  8:39 [PATCH] android/tester: Explicit set of io capabilities for SSP pairing tests Jakub Tyszkowski
@ 2014-09-24 19:40 ` Szymon Janc
  0 siblings, 0 replies; 2+ messages in thread
From: Szymon Janc @ 2014-09-24 19:40 UTC (permalink / raw)
  To: Jakub Tyszkowski; +Cc: linux-bluetooth

Hi Jakub,

On Wednesday 24 September 2014 10:39:21 Jakub Tyszkowski wrote:
> Those tests are periodically broken every time default io capabalities
> are changed. This patch sets them explicitely to avoid this breakage.
> ---
>  android/tester-bluetooth.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/android/tester-bluetooth.c b/android/tester-bluetooth.c
> index a97e28e..2be824d 100644
> --- a/android/tester-bluetooth.c
> +++ b/android/tester-bluetooth.c
> @@ -448,6 +448,10 @@ static  struct bt_action_data no_input_no_output_io_cap
> = { .io_cap = 0x03,
>  };
> 
> +static  struct bt_action_data display_yes_no_io_cap = {
> +	.io_cap = 0x01,
> +};
> +
>  static uint16_t test_conn_handle = 0;
> 
>  static void conn_cb(uint16_t handle, void *user_data)
> @@ -1034,6 +1038,7 @@ static struct test_case test_cases[] = {
>  		CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_ON),
>  		ACTION_SUCCESS(emu_setup_powered_remote_action, NULL),
>  		ACTION_SUCCESS(emu_set_ssp_mode_action, NULL),
> +		ACTION_SUCCESS(emu_set_io_cap, &display_yes_no_io_cap),
>  		ACTION_SUCCESS(bt_start_discovery_action, NULL),
>  		CALLBACK_STATE(CB_BT_DISCOVERY_STATE_CHANGED,
>  							BT_DISCOVERY_STARTED),
> @@ -1057,6 +1062,7 @@ static struct test_case test_cases[] = {
>  		CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_ON),
>  		ACTION_SUCCESS(emu_setup_powered_remote_action, NULL),
>  		ACTION_SUCCESS(emu_set_ssp_mode_action, NULL),
> +		ACTION_SUCCESS(emu_set_io_cap, &display_yes_no_io_cap),
>  		ACTION_SUCCESS(bt_start_discovery_action, NULL),
>  		CALLBACK_STATE(CB_BT_DISCOVERY_STATE_CHANGED,
>  							BT_DISCOVERY_STARTED),
> @@ -1081,6 +1087,7 @@ static struct test_case test_cases[] = {
>  		CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_ON),
>  		ACTION_SUCCESS(emu_setup_powered_remote_action, NULL),
>  		ACTION_SUCCESS(emu_set_ssp_mode_action, NULL),
> +		ACTION_SUCCESS(emu_set_io_cap, &display_yes_no_io_cap),
>  		ACTION_SUCCESS(bt_create_bond_action,
>  					&prop_test_remote_ble_bdaddr_req),
>  		CALLBACK_BOND_STATE(BT_BOND_STATE_BONDING,
> @@ -1113,6 +1120,7 @@ static struct test_case test_cases[] = {
>  		CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_ON),
>  		ACTION_SUCCESS(emu_setup_powered_remote_action, NULL),
>  		ACTION_SUCCESS(emu_set_ssp_mode_action, NULL),
> +		ACTION_SUCCESS(emu_set_io_cap, &display_yes_no_io_cap),
>  		ACTION_SUCCESS(bt_start_discovery_action, NULL),
>  		CALLBACK_STATE(CB_BT_DISCOVERY_STATE_CHANGED,
>  							BT_DISCOVERY_STARTED),
> @@ -1138,6 +1146,7 @@ static struct test_case test_cases[] = {
>  		CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_ON),
>  		ACTION_SUCCESS(emu_setup_powered_remote_action, NULL),
>  		ACTION_SUCCESS(emu_set_ssp_mode_action, NULL),
> +		ACTION_SUCCESS(emu_set_io_cap, &display_yes_no_io_cap),
>  		ACTION_SUCCESS(bt_start_discovery_action, NULL),
>  		CALLBACK_STATE(CB_BT_DISCOVERY_STATE_CHANGED,
>  							BT_DISCOVERY_STARTED),

Applied, thanks.

-- 
Szymon K. Janc
szymon.janc@gmail.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-09-24 19:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-24  8:39 [PATCH] android/tester: Explicit set of io capabilities for SSP pairing tests Jakub Tyszkowski
2014-09-24 19:40 ` Szymon Janc

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.