linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH BlueZ 0/1] iso-tester: Add test for bcast AC 13 BIS unset
@ 2023-09-29 15:44 Iulia Tanasescu
  2023-09-29 15:44 ` [PATCH BlueZ 1/1] " Iulia Tanasescu
  0 siblings, 1 reply; 4+ messages in thread
From: Iulia Tanasescu @ 2023-09-29 15:44 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: claudia.rosu, mihai-octavian.urzica, silviu.barbulescu,
	vlad.pruteanu, andrei.istodorescu, luiz.dentz, Iulia Tanasescu

This adds a new test for the ISO Broadcast AC 13, when the BIG handle
is set but the advertising handle is unset.

This test depends on the kernel support implemented in
Bluetooth: ISO: Match QoS adv handle with BIG handle

Iulia Tanasescu (1):
  iso-tester: Add test for bcast AC 13 BIS unset

 tools/iso-tester.c | 25 ++++++++++++++++++++-----
 1 file changed, 20 insertions(+), 5 deletions(-)


base-commit: 5ab5352531a9cc7058cce569607f3a6831464443
-- 
2.39.2


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

* [PATCH BlueZ 1/1] iso-tester: Add test for bcast AC 13 BIS unset
  2023-09-29 15:44 [PATCH BlueZ 0/1] iso-tester: Add test for bcast AC 13 BIS unset Iulia Tanasescu
@ 2023-09-29 15:44 ` Iulia Tanasescu
  2023-09-29 17:28   ` bluez.test.bot
  0 siblings, 1 reply; 4+ messages in thread
From: Iulia Tanasescu @ 2023-09-29 15:44 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: claudia.rosu, mihai-octavian.urzica, silviu.barbulescu,
	vlad.pruteanu, andrei.istodorescu, luiz.dentz, Iulia Tanasescu

This adds a new test for the ISO Broadcast AC 13, when the BIG handle
is set but the advertising handle is unset:

ISO Broadcaster AC 13 BIG 0x01 - Success

---
 tools/iso-tester.c | 25 ++++++++++++++++++++-----
 1 file changed, 20 insertions(+), 5 deletions(-)

diff --git a/tools/iso-tester.c b/tools/iso-tester.c
index 410da2c93..10b42dec2 100644
--- a/tools/iso-tester.c
+++ b/tools/iso-tester.c
@@ -330,7 +330,8 @@ static const uint8_t base_lc3_ac_12[] = {
 };
 
 /* Multiple Audio Channels. Two BISes. */
-#define BCAST_AC_13 BCAST_QOS_OUT_1_1(10000, 10, 40, 0x02, 2)
+#define BCAST_AC_13_1_1 BCAST_QOS_OUT_1_1(10000, 10, 40, 0x02, 2)
+#define BCAST_AC_13_1 BCAST_QOS_OUT_1(10000, 10, 40, 0x02, 2)
 
 static const uint8_t base_lc3_ac_13[] = {
 	0x28, 0x00, 0x00, /* Presentation Delay */
@@ -1151,8 +1152,17 @@ static const struct iso_client_data bcast_ac_12 = {
 	.base_len = sizeof(base_lc3_ac_12),
 };
 
-static const struct iso_client_data bcast_ac_13 = {
-	.qos = BCAST_AC_13,
+static const struct iso_client_data bcast_ac_13_1_1 = {
+	.qos = BCAST_AC_13_1_1,
+	.expect_err = 0,
+	.bcast = true,
+	.mconn = true,
+	.base = base_lc3_ac_13,
+	.base_len = sizeof(base_lc3_ac_13),
+};
+
+static const struct iso_client_data bcast_ac_13_1 = {
+	.qos = BCAST_AC_13_1,
 	.expect_err = 0,
 	.bcast = true,
 	.mconn = true,
@@ -3035,8 +3045,13 @@ int main(int argc, char *argv[])
 	test_iso("ISO Broadcaster AC 12 - Success", &bcast_ac_12, setup_powered,
 							test_bcast);
 
-	test_iso("ISO Broadcaster AC 13 - Success", &bcast_ac_13, setup_powered,
-							test_bcast2);
+	test_iso("ISO Broadcaster AC 13 BIG 0x01 BIS 0x01 - Success",
+						&bcast_ac_13_1_1,
+						setup_powered,
+						test_bcast2);
+
+	test_iso("ISO Broadcaster AC 13 BIG 0x01 - Success", &bcast_ac_13_1,
+						setup_powered, test_bcast2);
 
 	test_iso("ISO Broadcaster AC 14 - Success", &bcast_ac_14, setup_powered,
 							test_bcast);
-- 
2.39.2


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

* RE: iso-tester: Add test for bcast AC 13 BIS unset
  2023-09-29 15:44 ` [PATCH BlueZ 1/1] " Iulia Tanasescu
@ 2023-09-29 17:28   ` bluez.test.bot
  0 siblings, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2023-09-29 17:28 UTC (permalink / raw)
  To: linux-bluetooth, iulia.tanasescu

[-- Attachment #1: Type: text/plain, Size: 948 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=788861

---Test result---

Test Summary:
CheckPatch                    PASS      0.58 seconds
GitLint                       PASS      0.41 seconds
BuildEll                      PASS      34.53 seconds
BluezMake                     PASS      1025.19 seconds
MakeCheck                     PASS      14.25 seconds
MakeDistcheck                 PASS      201.02 seconds
CheckValgrind                 PASS      317.96 seconds
CheckSmatch                   PASS      422.61 seconds
bluezmakeextell               PASS      131.40 seconds
IncrementalBuild              PASS      835.38 seconds
ScanBuild                     PASS      1311.41 seconds



---
Regards,
Linux Bluetooth


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

* RE: iso-tester: Add test for bcast AC 13 BIS unset
  2023-10-03 14:38 [PATCH BlueZ 1/1] " Iulia Tanasescu
@ 2023-10-03 16:13 ` bluez.test.bot
  0 siblings, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2023-10-03 16:13 UTC (permalink / raw)
  To: linux-bluetooth, iulia.tanasescu

[-- Attachment #1: Type: text/plain, Size: 947 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=789624

---Test result---

Test Summary:
CheckPatch                    PASS      0.48 seconds
GitLint                       PASS      0.26 seconds
BuildEll                      PASS      27.85 seconds
BluezMake                     PASS      827.15 seconds
MakeCheck                     PASS      11.85 seconds
MakeDistcheck                 PASS      162.21 seconds
CheckValgrind                 PASS      256.11 seconds
CheckSmatch                   PASS      349.83 seconds
bluezmakeextell               PASS      105.87 seconds
IncrementalBuild              PASS      664.44 seconds
ScanBuild                     PASS      1060.94 seconds



---
Regards,
Linux Bluetooth


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

end of thread, other threads:[~2023-10-03 16:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-29 15:44 [PATCH BlueZ 0/1] iso-tester: Add test for bcast AC 13 BIS unset Iulia Tanasescu
2023-09-29 15:44 ` [PATCH BlueZ 1/1] " Iulia Tanasescu
2023-09-29 17:28   ` bluez.test.bot
  -- strict thread matches above, loose matches on Subject: below --
2023-10-03 14:38 [PATCH BlueZ 1/1] " Iulia Tanasescu
2023-10-03 16:13 ` bluez.test.bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).