--- android/tester-pan.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/android/tester-pan.c b/android/tester-pan.c index 96d1ba9..b679a12 100644 --- a/android/tester-pan.c +++ b/android/tester-pan.c @@ -131,6 +131,16 @@ static void pan_enable_panu_action(void) schedule_action_verification(step); } +static void pan_enable_none_action(void) +{ + struct test_data *data = tester_get_data(); + struct step *step = g_new0(struct step, 1); + + step->action_status = data->if_pan->enable(BTPAN_ROLE_NONE); + + schedule_action_verification(step); +} + static struct test_case test_cases[] = { TEST_CASE_BREDRLE("PAN Init", ACTION_SUCCESS(dummy_action, NULL), @@ -217,6 +227,14 @@ static struct test_case test_cases[] = { TEST_CASE_BREDRLE("PAN Enable PANU - Success", ACTION(BT_STATUS_UNSUPPORTED, pan_enable_panu_action, NULL), ), + TEST_CASE_BREDRLE("PAN Enable NONE - Success", + ACTION_SUCCESS(pan_enable_nap_action, NULL), + CALLBACK_PAN_CTRL_STATE(CB_PAN_CONTROL_STATE, BT_STATUS_SUCCESS, + BTPAN_STATE_ENABLED, BTPAN_ROLE_PANNAP), + ACTION_SUCCESS(pan_enable_none_action, NULL), + CALLBACK_PAN_CTRL_STATE(CB_PAN_CONTROL_STATE, BT_STATUS_SUCCESS, + BTPAN_STATE_DISABLED, BTPAN_ROLE_NONE), + ), }; struct queue *get_pan_tests(void) -- 1.9.1 -- 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