Message ID | 20220728210637.1247789-1-luiz.dentz@gmail.com |
---|---|
State | New |
Headers | show |
Series | [BlueZ] iso-test: Add ISO 48_2_1 Defer Send | expand |
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
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 --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);
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(+)