From: Willian Rampazzo <wrampazz@redhat.com>
To: Wainer dos Santos Moschetta <wainersm@redhat.com>
Cc: "Philippe Mathieu Daude" <philmd@redhat.com>,
qemu-devel <qemu-devel@nongnu.org>,
"Pavel Dovgalyuk" <pavel.dovgaluk@ispras.ru>,
"Cleber Rosa Junior" <crosa@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Aurelien Jarno" <aurelien@aurel32.net>
Subject: Re: [PATCH v3 6/7] tests/acceptance: Add set_vm_arg() to the Test class
Date: Tue, 22 Jun 2021 17:14:49 -0300 [thread overview]
Message-ID: <CAKJDGDZtGFCc8HKsZMpVme1rN+VRzFdc9Y+95uxmoWXeepDkdQ@mail.gmail.com> (raw)
In-Reply-To: <20210430133414.39905-7-wainersm@redhat.com>
On Fri, Apr 30, 2021 at 10:35 AM Wainer dos Santos Moschetta
<wainersm@redhat.com> wrote:
>
> The set_vm_arg method is added to avocado_qemu.Test class on this
> change. Use that method to set (or replace) an argument to the list of
> arguments given to the QEMU binary.
>
> Suggested-by: Cleber Rosa <crosa@redhat.com>
> Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
> ---
> tests/acceptance/avocado_qemu/__init__.py | 21 +++++++++++++++++++++
> 1 file changed, 21 insertions(+)
>
> diff --git a/tests/acceptance/avocado_qemu/__init__.py b/tests/acceptance/avocado_qemu/__init__.py
> index 7f8e703757..14c6ae70c8 100644
> --- a/tests/acceptance/avocado_qemu/__init__.py
> +++ b/tests/acceptance/avocado_qemu/__init__.py
> @@ -240,6 +240,27 @@ def get_vm(self, *args, name=None):
> self._vms[name].set_machine(self.machine)
> return self._vms[name]
>
> + def set_vm_arg(self, arg, value):
> + """
> + Set an argument to list of extra arguments to be given to the QEMU
> + binary. If the argument already exists then its value is replaced.
> +
> + :param arg: the QEMU argument, such as "-cpu" in "-cpu host"
> + :type arg: str
> + :param value: the argument value, such as "host" in "-cpu host"
> + :type value: str
> + """
> + if not arg or not value:
> + return
> + if arg not in self.vm.args:
> + self.vm.args.extend([arg, value])
> + else:
> + idx = self.vm.args.index(arg) + 1
> + if idx < len(self.vm.args):
> + self.vm.args[idx] = value
> + else:
> + self.vm.args.append(value)
> +
Considering all args in self.vm.args are composed of [arg,value]:
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
> def tearDown(self):
> for vm in self._vms.values():
> vm.shutdown()
> --
> 2.29.2
>
next prev parent reply other threads:[~2021-06-22 20:17 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-30 13:34 [PATCH v3 0/7] tests/acceptance: Handle tests with "cpu" tag Wainer dos Santos Moschetta
2021-04-30 13:34 ` [PATCH v3 1/7] tests/acceptance: Automatic set -cpu to the test vm Wainer dos Santos Moschetta
2021-04-30 13:34 ` [PATCH v3 2/7] tests/acceptance: Fix mismatch on cpu tagged tests Wainer dos Santos Moschetta
2021-04-30 13:34 ` [PATCH v3 3/7] tests/acceptance: Let the framework handle "cpu:VALUE" " Wainer dos Santos Moschetta
2021-04-30 13:34 ` [PATCH v3 4/7] tests/acceptance: Tagging tests with "cpu:VALUE" Wainer dos Santos Moschetta
2021-04-30 13:34 ` [PATCH v3 5/7] python/qemu: Add args property to the QEMUMachine class Wainer dos Santos Moschetta
2021-04-30 13:34 ` [PATCH v3 6/7] tests/acceptance: Add set_vm_arg() to the Test class Wainer dos Santos Moschetta
2021-06-22 20:14 ` Willian Rampazzo [this message]
2021-04-30 13:34 ` [PATCH v3 7/7] tests/acceptance: Handle cpu tag on x86_cpu_model_versions tests Wainer dos Santos Moschetta
2021-06-22 20:18 ` Willian Rampazzo
2021-06-11 18:30 ` [PATCH v3 0/7] tests/acceptance: Handle tests with "cpu" tag Wainer dos Santos Moschetta
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=CAKJDGDZtGFCc8HKsZMpVme1rN+VRzFdc9Y+95uxmoWXeepDkdQ@mail.gmail.com \
--to=wrampazz@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=aurelien@aurel32.net \
--cc=crosa@redhat.com \
--cc=pavel.dovgaluk@ispras.ru \
--cc=pbonzini@redhat.com \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=wainersm@redhat.com \
/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).