diff mbox series

[BlueZ,1/2] test-runner: Change qemu output

Message ID 20201117190607.50483-1-luiz.dentz@gmail.com
State New
Headers show
Series [BlueZ,1/2] test-runner: Change qemu output | expand

Commit Message

Luiz Augusto von Dentz Nov. 17, 2020, 7:06 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This changes the serial device to include mux=on which enables the
output of early kernel logs.
---
 tools/test-runner.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

bluez.test.bot@gmail.com Nov. 17, 2020, 7:25 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=386271

---Test result---

##############################
Test: CheckPatch - PASS

##############################
Test: CheckGitLint - PASS

##############################
Test: CheckBuild - PASS

##############################
Test: MakeCheck - PASS



---
Regards,
Linux Bluetooth
Luiz Augusto von Dentz Nov. 17, 2020, 8:33 p.m. UTC | #2
Hi,

On Tue, Nov 17, 2020 at 11:25 AM <bluez.test.bot@gmail.com> wrote:
>
> 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=386271
>
> ---Test result---
>
> ##############################
> Test: CheckPatch - PASS
>
> ##############################
> Test: CheckGitLint - PASS
>
> ##############################
> Test: CheckBuild - PASS
>
> ##############################
> Test: MakeCheck - PASS
>
>
>
> ---
> Regards,
> Linux Bluetooth

Pushed.
diff mbox series

Patch

diff --git a/tools/test-runner.c b/tools/test-runner.c
index a53b468f4..0c5daf2d9 100644
--- a/tools/test-runner.c
+++ b/tools/test-runner.c
@@ -195,8 +195,8 @@  static char *const qemu_argv[] = {
 	"-no-reboot",
 	"-fsdev", "local,id=fsdev-root,path=/,readonly,security_model=none",
 	"-device", "virtio-9p-pci,fsdev=fsdev-root,mount_tag=/dev/root",
-	"-chardev", "stdio,id=chardev-serial0,signal=off",
-	"-device", "pci-serial,chardev=chardev-serial0",
+	"-chardev", "stdio,id=con,mux=on",
+	"-serial", "chardev:con",
 	NULL
 };