* [PATCH BlueZ v1] mgmt-tester: Fix tests failing due to missing LL Privacy
@ 2025-08-12 21:22 Luiz Augusto von Dentz
2025-08-12 22:47 ` [BlueZ,v1] " bluez.test.bot
2025-08-14 12:50 ` [PATCH BlueZ v1] " patchwork-bot+bluetooth
0 siblings, 2 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2025-08-12 21:22 UTC (permalink / raw)
To: linux-bluetooth
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
LL Privacy setting now depends on LE to be enabled first which was
causing the following tests to fail, so this removes LL Privacy from
the expected settings:
Add Ext Advertising - Success 22 (LE -> off, Remove)
Set Device ID - Power off and Power on
Set Device ID - SSP off and Power on
---
tools/mgmt-tester.c | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c
index c066ad6c37b8..ac27b85dd4c8 100644
--- a/tools/mgmt-tester.c
+++ b/tools/mgmt-tester.c
@@ -1509,7 +1509,6 @@ static const char set_ssp_invalid_param[] = { 0x02 };
static const char set_ssp_garbage_param[] = { 0x01, 0x00 };
static const char set_ssp_settings_param_1[] = { 0xc0, 0x00, 0x00, 0x00 };
static const char set_ssp_settings_param_2[] = { 0xc1, 0x00, 0x00, 0x00 };
-static const char set_ssp_settings_param_3[] = { 0xc1, 0x00, 0x40, 0x00 };
static const char set_ssp_on_write_ssp_mode_param[] = { 0x01 };
static const struct generic_data set_ssp_on_success_test_1 = {
@@ -6078,8 +6077,8 @@ static const struct generic_data set_dev_id_power_off_on = {
.send_param = set_powered_on_param,
.send_len = sizeof(set_powered_on_param),
.expect_status = MGMT_STATUS_SUCCESS,
- .expect_param = set_ssp_settings_param_3,
- .expect_len = sizeof(set_ssp_settings_param_3),
+ .expect_param = set_ssp_settings_param_2,
+ .expect_len = sizeof(set_ssp_settings_param_2),
.expect_settings_set = MGMT_SETTING_POWERED,
.expect_hci_command = BT_HCI_CMD_WRITE_EXT_INQUIRY_RESPONSE,
.expect_hci_param = write_eir_set_dev_id_success_1,
@@ -6095,8 +6094,8 @@ static const struct generic_data set_dev_id_ssp_off_on = {
.send_param = set_ssp_on_param,
.send_len = sizeof(set_ssp_on_param),
.expect_status = MGMT_STATUS_SUCCESS,
- .expect_param = set_ssp_settings_param_3,
- .expect_len = sizeof(set_ssp_settings_param_3),
+ .expect_param = set_ssp_settings_param_2,
+ .expect_len = sizeof(set_ssp_settings_param_2),
.expect_hci_command = BT_HCI_CMD_WRITE_EXT_INQUIRY_RESPONSE,
.expect_hci_param = write_eir_set_dev_id_success_1,
.expect_hci_len = sizeof(write_eir_set_dev_id_success_1),
@@ -8599,15 +8598,13 @@ static const struct generic_data add_ext_advertising_success_17 = {
.expect_hci_len = sizeof(preset_connectable_off_ext_adv_param),
};
-static const char set_le_settings_param_off_1[] = { 0x81, 0x00, 0x40, 0x00 };
-
static const struct generic_data add_ext_advertising_le_off = {
.send_opcode = MGMT_OP_SET_LE,
.send_param = set_le_off_param,
.send_len = sizeof(set_le_off_param),
.expect_status = MGMT_STATUS_SUCCESS,
- .expect_param = set_le_settings_param_off_1,
- .expect_len = sizeof(set_le_settings_param_off_1),
+ .expect_param = set_le_settings_param_off,
+ .expect_len = sizeof(set_le_settings_param_off),
.expect_alt_ev = MGMT_EV_ADVERTISING_REMOVED,
.expect_alt_ev_param = advertising_instance1_param,
.expect_alt_ev_len = sizeof(advertising_instance1_param),
--
2.50.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* RE: [BlueZ,v1] mgmt-tester: Fix tests failing due to missing LL Privacy
2025-08-12 21:22 [PATCH BlueZ v1] mgmt-tester: Fix tests failing due to missing LL Privacy Luiz Augusto von Dentz
@ 2025-08-12 22:47 ` bluez.test.bot
2025-08-14 12:50 ` [PATCH BlueZ v1] " patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2025-08-12 22:47 UTC (permalink / raw)
To: linux-bluetooth, luiz.dentz
[-- Attachment #1: Type: text/plain, Size: 1261 bytes --]
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=990735
---Test result---
Test Summary:
CheckPatch PENDING 0.34 seconds
GitLint PENDING 0.25 seconds
BuildEll PASS 20.23 seconds
BluezMake PASS 2634.21 seconds
MakeCheck PASS 19.84 seconds
MakeDistcheck PASS 185.67 seconds
CheckValgrind PASS 236.17 seconds
CheckSmatch PASS 307.83 seconds
bluezmakeextell PASS 128.60 seconds
IncrementalBuild PENDING 0.31 seconds
ScanBuild PASS 921.64 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH BlueZ v1] mgmt-tester: Fix tests failing due to missing LL Privacy
2025-08-12 21:22 [PATCH BlueZ v1] mgmt-tester: Fix tests failing due to missing LL Privacy Luiz Augusto von Dentz
2025-08-12 22:47 ` [BlueZ,v1] " bluez.test.bot
@ 2025-08-14 12:50 ` patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+bluetooth @ 2025-08-14 12:50 UTC (permalink / raw)
To: Luiz Augusto von Dentz; +Cc: linux-bluetooth
Hello:
This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:
On Tue, 12 Aug 2025 17:22:27 -0400 you wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>
> LL Privacy setting now depends on LE to be enabled first which was
> causing the following tests to fail, so this removes LL Privacy from
> the expected settings:
>
> Add Ext Advertising - Success 22 (LE -> off, Remove)
> Set Device ID - Power off and Power on
> Set Device ID - SSP off and Power on
>
> [...]
Here is the summary with links:
- [BlueZ,v1] mgmt-tester: Fix tests failing due to missing LL Privacy
https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=c8a82f19c5c2
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-08-14 12:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-12 21:22 [PATCH BlueZ v1] mgmt-tester: Fix tests failing due to missing LL Privacy Luiz Augusto von Dentz
2025-08-12 22:47 ` [BlueZ,v1] " bluez.test.bot
2025-08-14 12:50 ` [PATCH BlueZ v1] " patchwork-bot+bluetooth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox