diff mbox series

[BlueZ] iso-test: Add ISO 48_2_1 Defer Send

Message ID 20220728210637.1247789-1-luiz.dentz@gmail.com (mailing list archive)
State Accepted
Commit cb42377ae002c52ea436718aa99007bb8659f83a
Headers show
Series [BlueZ] iso-test: Add ISO 48_2_1 Defer Send | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
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/makecheckvalgrind 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
tedd_an/scan_build success Pass

Commit Message

Luiz Augusto von Dentz July 28, 2022, 9:06 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This adds ISO 48_2_1 Defer Send test which enables just output instead
of both.
---
 tools/iso-tester.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

Comments

bluez.test.bot@gmail.com July 28, 2022, 10 p.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=663886

---Test result---

Test Summary:
CheckPatch                    PASS      1.30 seconds
GitLint                       PASS      0.77 seconds
Prep - Setup ELL              PASS      26.60 seconds
Build - Prep                  PASS      0.75 seconds
Build - Configure             PASS      8.51 seconds
Build - Make                  PASS      959.56 seconds
Make Check                    PASS      11.15 seconds
Make Check w/Valgrind         PASS      274.10 seconds
Make Distcheck                PASS      233.63 seconds
Build w/ext ELL - Configure   PASS      8.49 seconds
Build w/ext ELL - Make        PASS      79.18 seconds
Incremental Build w/ patches  PASS      0.00 seconds
Scan Build                    PASS      483.41 seconds



---
Regards,
Linux Bluetooth
patchwork-bot+bluetooth@kernel.org Aug. 1, 2022, 10:10 p.m. UTC | #2
Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Thu, 28 Jul 2022 14:06:37 -0700 you wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> 
> This adds ISO 48_2_1 Defer Send test which enables just output instead
> of both.
> ---
>  tools/iso-tester.c | 11 +++++++++++
>  1 file changed, 11 insertions(+)

Here is the summary with links:
  - [BlueZ] iso-test: Add ISO 48_2_1 Defer Send
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=cb42377ae002

You are awesome, thank you!
diff mbox series

Patch

diff --git a/tools/iso-tester.c b/tools/iso-tester.c
index 8010c0a36..cae5fb4b7 100644
--- a/tools/iso-tester.c
+++ b/tools/iso-tester.c
@@ -567,6 +567,13 @@  static const struct iso_client_data connect_16_2_1_defer_send = {
 	.defer = true,
 };
 
+static const struct iso_client_data connect_48_2_1_defer_send = {
+	.qos = QOS_48_2_1,
+	.expect_err = 0,
+	.send = &send_16_2_1,
+	.defer = true,
+};
+
 static const struct iso_client_data listen_16_2_1_defer_recv = {
 	.qos = QOS_16_2_1,
 	.expect_err = 0,
@@ -1674,6 +1681,10 @@  int main(int argc, char *argv[])
 							setup_powered,
 							test_connect);
 
+	test_iso("ISO 48_2_1 Defer Send - Success", &connect_48_2_1_defer_send,
+							setup_powered,
+							test_connect);
+
 	test_iso("ISO Defer Receive - Success", &listen_16_2_1_defer_recv,
 						setup_powered, test_listen);