diff mbox series

[BlueZ] tools/mgmt-tester: Update the correct suspend reason for disconnect

Message ID 20211006024022.111584-1-hj.tedd.an@gmail.com (mailing list archive)
State Accepted
Delegated to: Luiz Von Dentz
Headers show
Series [BlueZ] tools/mgmt-tester: Update the correct suspend reason for disconnect | expand

Checks

Context Check Description
tedd_an/checkpatch success Checkpatch PASS
tedd_an/gitlint success Gitlint PASS
tedd_an/setupell success Setup ELL PASS
tedd_an/buildprep success Build Prep PASS
tedd_an/build success Build Configuration PASS
tedd_an/makecheck success Make Check PASS
tedd_an/makedistcheck success Make Distcheck PASS
tedd_an/build_extell success Build External ELL PASS
tedd_an/build_extell_make success Build Make with External ELL PASS

Commit Message

Tedd Ho-Jeong An Oct. 6, 2021, 2:40 a.m. UTC
From: Tedd Ho-Jeong An <tedd.an@intel.com>

This patch fixes the suspend reason for the pairing test cases to the
disconnect.
---
 tools/mgmt-tester.c | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

Comments

bluez.test.bot@gmail.com Oct. 6, 2021, 3:02 a.m. UTC | #1
This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=558253

---Test result---

Test Summary:
CheckPatch                    PASS      1.42 seconds
GitLint                       PASS      0.92 seconds
Prep - Setup ELL              PASS      47.11 seconds
Build - Prep                  PASS      0.50 seconds
Build - Configure             PASS      9.03 seconds
Build - Make                  PASS      201.78 seconds
Make Check                    PASS      9.71 seconds
Make Distcheck                PASS      238.39 seconds
Build w/ext ELL - Configure   PASS      8.76 seconds
Build w/ext ELL - Make        PASS      190.52 seconds



---
Regards,
Linux Bluetooth
Luiz Augusto von Dentz Oct. 6, 2021, 5:58 p.m. UTC | #2
Hi Tedd,

On Tue, Oct 5, 2021 at 8:05 PM <bluez.test.bot@gmail.com> wrote:
>
> This is automated email and please do not reply to this email!
>
> Dear submitter,
>
> Thank you for submitting the patches to the linux bluetooth mailing list.
> This is a CI test results with your patch series:
> PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=558253
>
> ---Test result---
>
> Test Summary:
> CheckPatch                    PASS      1.42 seconds
> GitLint                       PASS      0.92 seconds
> Prep - Setup ELL              PASS      47.11 seconds
> Build - Prep                  PASS      0.50 seconds
> Build - Configure             PASS      9.03 seconds
> Build - Make                  PASS      201.78 seconds
> Make Check                    PASS      9.71 seconds
> Make Distcheck                PASS      238.39 seconds
> Build w/ext ELL - Configure   PASS      8.76 seconds
> Build w/ext ELL - Make        PASS      190.52 seconds
>
>
>
> ---
> Regards,
> Linux Bluetooth

Applied, thanks.
diff mbox series

Patch

diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c
index 611bf3dbf..1a2aba7fd 100644
--- a/tools/mgmt-tester.c
+++ b/tools/mgmt-tester.c
@@ -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 */