From: "Alex Bennée" <alex.bennee@linaro.org>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: Cleber Rosa <crosa@redhat.com>,
Eduardo Habkost <ehabkost@redhat.com>,
qemu-devel@nongnu.org, Fam Zheng <famz@redhat.com>
Subject: Re: [Qemu-devel] [RFC PATCH v2 5/6] tests/acceptance: Add a kludge to not use the default console
Date: Thu, 28 Jun 2018 17:33:24 +0100 [thread overview]
Message-ID: <87fu16vpkb.fsf@linaro.org> (raw)
In-Reply-To: <20180622004435.10291-6-f4bug@amsat.org>
Philippe Mathieu-Daudé <f4bug@amsat.org> writes:
> The board already instantiate the proper devices, we don't want to
> add extra devices but connect the chardev to one of the serial already
> available.
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
> scripts/qemu.py | 6 ++++--
> tests/acceptance/boot_linux_console.py | 3 ++-
> 2 files changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/scripts/qemu.py b/scripts/qemu.py
> index f099ce7278..7a975f4538 100644
> --- a/scripts/qemu.py
> +++ b/scripts/qemu.py
> @@ -211,8 +211,10 @@ class QEMUMachine(object):
> self._name + "-console.sock")
> chardev = ('socket,id=console,path=%s,server,nowait' %
> self._console_address)
> - device = '%s,chardev=console' % self._console_device_type
> - args.extend(['-chardev', chardev, '-device', device])
> + args.extend(['-chardev', chardev])
> + if len(self._console_device_type):
> + device = '%s,chardev=console' % self._console_device_type
> + args.extend(['-device', device])
> return args
>
> def _pre_launch(self):
> diff --git a/tests/acceptance/boot_linux_console.py b/tests/acceptance/boot_linux_console.py
> index 72cf5e943c..510742c4c7 100644
> --- a/tests/acceptance/boot_linux_console.py
> +++ b/tests/acceptance/boot_linux_console.py
> @@ -69,9 +69,10 @@ class BootLinuxConsoleMips(Test):
> kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
>
> self.vm.set_machine('malta')
> - self.vm.set_console()
> + self.vm.set_console("") # FIXME this disable isa-serial to
> use -serial
This is reminiscent of assumptions libvirt made about serial consoles.
Does -serial not work on x86 for old style setups? I'm sure I have
x86-64 boots with -serial mon:stdio lines.
> kernel_command_line = 'console=ttyS0 printk.time=0'
> self.vm.add_args('-m', "64",
> + '-serial', "chardev:console", # FIXME ... here.
> '-kernel', kernel_path,
> '-append', kernel_command_line)
> self.vm.launch()
--
Alex Bennée
next prev parent reply other threads:[~2018-06-28 16:33 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-22 0:44 [Qemu-devel] [PATCH v2 0/6] Avocado: start multi-arch tests, add a Travis job Philippe Mathieu-Daudé
2018-06-22 0:44 ` [Qemu-devel] [RFC PATCH v2 1/6] avocado: Add a Test.arch property Philippe Mathieu-Daudé
2018-06-28 16:10 ` Alex Bennée
2018-06-28 21:54 ` Alex Bennée
2018-06-28 22:03 ` Philippe Mathieu-Daudé
2018-07-27 5:35 ` Philippe Mathieu-Daudé
2018-06-22 0:44 ` [Qemu-devel] [PATCH v2 2/6] tests/acceptance: Rename the x86-64 specific BootLinuxConsole test Philippe Mathieu-Daudé
2018-06-28 17:17 ` Alex Bennée
2018-06-22 0:44 ` [Qemu-devel] [PATCH v2 3/6] tests/acceptance: Improve the Avocado tags Philippe Mathieu-Daudé
2018-06-22 0:44 ` [Qemu-devel] [PATCH v2 4/6] tests/acceptance: Add a BootLinuxConsoleMips test Philippe Mathieu-Daudé
2018-06-28 16:23 ` Alex Bennée
2018-06-28 17:40 ` Philippe Mathieu-Daudé
2018-06-28 18:36 ` Alex Bennée
2018-06-28 22:45 ` Philippe Mathieu-Daudé
2018-07-04 19:56 ` Philippe Mathieu-Daudé
2018-07-04 20:47 ` Eduardo Habkost
2018-07-04 21:44 ` Philippe Mathieu-Daudé
2018-07-04 22:32 ` Eduardo Habkost
2018-06-22 0:44 ` [Qemu-devel] [RFC PATCH v2 5/6] tests/acceptance: Add a kludge to not use the default console Philippe Mathieu-Daudé
2018-06-28 16:33 ` Alex Bennée [this message]
2018-06-22 0:44 ` [Qemu-devel] [PATCH v2 6/6] travis: Add Avocado tests Philippe Mathieu-Daudé
2018-06-28 15:46 ` [Qemu-devel] [PATCH v2 0/6] Avocado: start multi-arch tests, add a Travis job Alex Bennée
2018-06-28 16:26 ` Cleber Rosa
2018-06-28 17:13 ` Alex Bennée
2018-06-28 17:24 ` Philippe Mathieu-Daudé
2018-06-28 16:01 ` Alex Bennée
2018-07-27 5:33 ` Philippe Mathieu-Daudé
2018-07-27 16:30 ` Alex Bennée
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87fu16vpkb.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=crosa@redhat.com \
--cc=ehabkost@redhat.com \
--cc=f4bug@amsat.org \
--cc=famz@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).