tools/mgmt-tester: Update the correct suspend reason for disconnect
authorTedd Ho-Jeong An <tedd.an@intel.com>
Wed, 6 Oct 2021 02:40:22 +0000 (19:40 -0700)
committerAyush Garg <ayush.garg@samsung.com>
Fri, 11 Mar 2022 13:38:37 +0000 (19:08 +0530)
This patch fixes the suspend reason for the pairing test cases to the
disconnect.

Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
tools/mgmt-tester.c

index 611bf3d..1a2aba7 100755 (executable)
@@ -10414,10 +10414,6 @@ static void test_50_controller_cap_response(const void *test_data)
                                                data, NULL);
 }
 
-static const uint8_t suspend_state_param_running[] = {
-       0x00,
-};
-
 static const uint8_t suspend_state_param_disconnect[] = {
        0x01,
 };
@@ -10587,8 +10583,8 @@ static const struct generic_data suspend_resume_success_5 = {
        .client_pin = pair_device_pin,
        .client_pin_len = sizeof(pair_device_pin),
        .expect_alt_ev = MGMT_EV_CONTROLLER_SUSPEND,
-       .expect_alt_ev_param = suspend_state_param_running,
-       .expect_alt_ev_len = sizeof(suspend_state_param_running),
+       .expect_alt_ev_param = suspend_state_param_disconnect,
+       .expect_alt_ev_len = sizeof(suspend_state_param_disconnect),
 };
 
 static void trigger_force_suspend(void *user_data)
@@ -10616,8 +10612,8 @@ static const struct generic_data suspend_resume_success_6 = {
        .setup_settings = settings_powered_connectable_bondable_ssp,
        .client_enable_ssp = true,
        .expect_alt_ev = MGMT_EV_CONTROLLER_SUSPEND,
-       .expect_alt_ev_param = suspend_state_param_running,
-       .expect_alt_ev_len = sizeof(suspend_state_param_running),
+       .expect_alt_ev_param = suspend_state_param_disconnect,
+       .expect_alt_ev_len = sizeof(suspend_state_param_disconnect),
        .expect_hci_command = BT_HCI_CMD_USER_CONFIRM_REQUEST_REPLY,
        .expect_hci_func = client_bdaddr_param_func,
        .io_cap = 0x03, /* NoInputNoOutput */