Message ID | 20210408195237.3489296-6-wainersm@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | tests/acceptance: Handle tests with "cpu" tag | expand |
On Thu, Apr 08, 2021 at 04:52:35PM -0300, Wainer dos Santos Moschetta wrote: > This added the args property to QEMUMachine so that users of the class > can access and handle the list of arguments to be given to the QEMU > binary. > > Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com> > --- > python/qemu/machine.py | 5 +++++ > 1 file changed, 5 insertions(+) > Reviewed-by: Cleber Rosa <crosa@redhat.com>
On Thu, Apr 8, 2021 at 5:00 PM Wainer dos Santos Moschetta <wainersm@redhat.com> wrote: > > This added the args property to QEMUMachine so that users of the class > can access and handle the list of arguments to be given to the QEMU > binary. > > Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com> > --- > python/qemu/machine.py | 5 +++++ > 1 file changed, 5 insertions(+) > Reviewed-by: Willian Rampazzo <willianr@redhat.com>
diff --git a/python/qemu/machine.py b/python/qemu/machine.py index 6e44bda337..1c30bde99d 100644 --- a/python/qemu/machine.py +++ b/python/qemu/machine.py @@ -302,6 +302,11 @@ def _base_args(self) -> List[str]: args.extend(['-device', device]) return args + @property + def args(self) -> List[str]: + """Returns the list of arguments given to the QEMU binary.""" + return self._args + def _pre_launch(self) -> None: self._temp_dir = tempfile.mkdtemp(prefix="qemu-machine-", dir=self._test_dir)
This added the args property to QEMUMachine so that users of the class can access and handle the list of arguments to be given to the QEMU binary. Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com> --- python/qemu/machine.py | 5 +++++ 1 file changed, 5 insertions(+)