All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ 0/1] iso-tester: Add test for bcast receiver defer setup
@ 2023-08-16 15:09 Iulia Tanasescu
  2023-08-16 15:09 ` [PATCH BlueZ 1/1] " Iulia Tanasescu
  0 siblings, 1 reply; 4+ messages in thread
From: Iulia Tanasescu @ 2023-08-16 15:09 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: claudia.rosu, mihai-octavian.urzica, silviu.barbulescu,
	vlad.pruteanu, andrei.istodorescu, Iulia Tanasescu

This adds the following test to validate defer setup support for the
Broadcast Receiver scenario:

ISO Broadcaster Receiver Defer - Success

This patch depends on the kernel support introduced by
https://patchwork.kernel.org/project/bluetooth/cover/20230816150033.7812-1-iulia.tanasescu@nxp.com/

Iulia Tanasescu (1):
  add test for receiver defer setup

 tools/iso-tester.c | 30 +++++++++++++++++++++++++++++-
 1 file changed, 29 insertions(+), 1 deletion(-)


base-commit: f4aea37ee6cf6b6cb3f91e4d4c9f09611acfd610
-- 
2.34.1


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

* [PATCH BlueZ 1/1] iso-tester: Add test for bcast receiver defer setup
  2023-08-16 15:09 [PATCH BlueZ 0/1] iso-tester: Add test for bcast receiver defer setup Iulia Tanasescu
@ 2023-08-16 15:09 ` Iulia Tanasescu
  2023-08-16 16:37   ` bluez.test.bot
  0 siblings, 1 reply; 4+ messages in thread
From: Iulia Tanasescu @ 2023-08-16 15:09 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: claudia.rosu, mihai-octavian.urzica, silviu.barbulescu,
	vlad.pruteanu, andrei.istodorescu, Iulia Tanasescu

This adds the following test to validate defer setup support for the
Broadcast Receiver scenario:

ISO Broadcaster Receiver Defer - Success

---
 tools/iso-tester.c | 30 +++++++++++++++++++++++++++++-
 1 file changed, 29 insertions(+), 1 deletion(-)

diff --git a/tools/iso-tester.c b/tools/iso-tester.c
index b1a2afba0..d5d2284ab 100644
--- a/tools/iso-tester.c
+++ b/tools/iso-tester.c
@@ -1134,6 +1134,15 @@ static const struct iso_client_data bcast_enc_16_2_1_recv = {
 	.server = true,
 };
 
+static const struct iso_client_data bcast_16_2_1_recv_defer = {
+	.qos = QOS_IN_16_2_1,
+	.expect_err = 0,
+	.defer = true,
+	.recv = &send_16_2_1,
+	.bcast = true,
+	.server = true,
+};
+
 static const struct iso_client_data bcast_ac_12 = {
 	.qos = BCAST_AC_12,
 	.expect_err = 0,
@@ -2341,11 +2350,15 @@ static void setup_listen(struct test_data *data, uint8_t num, GIOFunc func)
 	}
 }
 
+static gboolean iso_accept_cb(GIOChannel *io, GIOCondition cond,
+							gpointer user_data);
+
 static bool iso_defer_accept(struct test_data *data, GIOChannel *io)
 {
 	int sk;
 	char c;
 	struct pollfd pfd;
+	const struct iso_client_data *isodata = data->test_data;
 
 	sk = g_io_channel_unix_get_fd(io);
 
@@ -2368,7 +2381,13 @@ static bool iso_defer_accept(struct test_data *data, GIOChannel *io)
 	tester_print("Accept deferred setup");
 
 	data->io = io;
-	data->io_id[0] = g_io_add_watch(io, G_IO_OUT, iso_connect_cb, NULL);
+
+	if (isodata->bcast) {
+		data->io_id[0] = g_io_add_watch(io, G_IO_IN, iso_accept_cb, NULL);
+		data->step++;
+	} else {
+		data->io_id[0] = g_io_add_watch(io, G_IO_OUT, iso_connect_cb, NULL);
+	}
 
 	return true;
 }
@@ -2400,6 +2419,11 @@ static gboolean iso_accept_cb(GIOChannel *io, GIOCondition cond,
 			return false;
 		}
 
+		if (isodata->bcast && data->step > 1) {
+			data->step--;
+			goto connect;
+		}
+
 		if (!iso_defer_accept(data, io)) {
 			tester_warn("Unable to accept deferred setup");
 			tester_test_failed();
@@ -2419,6 +2443,7 @@ static gboolean iso_accept_cb(GIOChannel *io, GIOCondition cond,
 		}
 	}
 
+connect:
 	return iso_connect(io, cond, user_data);
 }
 
@@ -2963,6 +2988,9 @@ int main(int argc, char *argv[])
 							&bcast_enc_16_2_1_recv,
 							setup_powered,
 							test_bcast_recv);
+	test_iso("ISO Broadcaster Receiver Defer - Success", &bcast_16_2_1_recv_defer,
+							setup_powered,
+							test_bcast_recv);
 
 	test_iso("ISO Broadcaster AC 12 - Success", &bcast_ac_12, setup_powered,
 							test_bcast);
-- 
2.34.1


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

* RE: iso-tester: Add test for bcast receiver defer setup
  2023-08-16 15:09 ` [PATCH BlueZ 1/1] " Iulia Tanasescu
@ 2023-08-16 16:37   ` bluez.test.bot
  0 siblings, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2023-08-16 16:37 UTC (permalink / raw)
  To: linux-bluetooth, iulia.tanasescu

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

---Test result---

Test Summary:
CheckPatch                    FAIL      0.76 seconds
GitLint                       PASS      0.27 seconds
BuildEll                      PASS      35.28 seconds
BluezMake                     PASS      1255.12 seconds
MakeCheck                     PASS      13.33 seconds
MakeDistcheck                 PASS      201.74 seconds
CheckValgrind                 PASS      326.91 seconds
CheckSmatch                   PASS      458.96 seconds
bluezmakeextell               PASS      136.65 seconds
IncrementalBuild              PASS      1078.93 seconds
ScanBuild                     PASS      1460.57 seconds

Details
##############################
Test: CheckPatch - FAIL
Desc: Run checkpatch.pl script
Output:
[BlueZ,1/1] iso-tester: Add test for bcast receiver defer setup
ERROR:SPACING: need consistent spacing around '*' (ctx:WxV)
#131: FILE: tools/iso-tester.c:2353:
+static gboolean iso_accept_cb(GIOChannel *io, GIOCondition cond,
                                          ^

WARNING:LONG_LINE: line length of 82 exceeds 80 columns
#150: FILE: tools/iso-tester.c:2386:
+		data->io_id[0] = g_io_add_watch(io, G_IO_IN, iso_accept_cb, NULL);

WARNING:LONG_LINE: line length of 84 exceeds 80 columns
#153: FILE: tools/iso-tester.c:2389:
+		data->io_id[0] = g_io_add_watch(io, G_IO_OUT, iso_connect_cb, NULL);

WARNING:LONG_LINE: line length of 86 exceeds 80 columns
#182: FILE: tools/iso-tester.c:2991:
+	test_iso("ISO Broadcaster Receiver Defer - Success", &bcast_16_2_1_recv_defer,

/github/workspace/src/src/13355383.patch total: 1 errors, 3 warnings, 71 lines checked

NOTE: For some of the reported defects, checkpatch may be able to
      mechanically convert to the typical style using --fix or --fix-inplace.

/github/workspace/src/src/13355383.patch has style problems, please review.

NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPDX_LICENSE_TAG SPLIT_STRING SSCANF_TO_KSTRTO

NOTE: If any of the errors are false positives, please report
      them to the maintainer, see CHECKPATCH in MAINTAINERS.




---
Regards,
Linux Bluetooth


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

* RE: iso-tester: Add test for bcast receiver defer setup
  2023-08-17  6:48 [PATCH BlueZ v2 1/1] " Iulia Tanasescu
@ 2023-08-17  8:22 ` bluez.test.bot
  0 siblings, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2023-08-17  8:22 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=776877

---Test result---

Test Summary:
CheckPatch                    PASS      0.50 seconds
GitLint                       PASS      0.31 seconds
BuildEll                      PASS      29.99 seconds
BluezMake                     PASS      1082.29 seconds
MakeCheck                     PASS      12.11 seconds
MakeDistcheck                 PASS      173.12 seconds
CheckValgrind                 PASS      273.89 seconds
CheckSmatch                   PASS      389.45 seconds
bluezmakeextell               PASS      112.12 seconds
IncrementalBuild              PASS      922.77 seconds
ScanBuild                     PASS      1204.73 seconds



---
Regards,
Linux Bluetooth


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

end of thread, other threads:[~2023-08-17  8:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-16 15:09 [PATCH BlueZ 0/1] iso-tester: Add test for bcast receiver defer setup Iulia Tanasescu
2023-08-16 15:09 ` [PATCH BlueZ 1/1] " Iulia Tanasescu
2023-08-16 16:37   ` bluez.test.bot
  -- strict thread matches above, loose matches on Subject: below --
2023-08-17  6:48 [PATCH BlueZ v2 1/1] " Iulia Tanasescu
2023-08-17  8:22 ` bluez.test.bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.