[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PATCH v2 01/20] scripts/qemu.py: log QEMU launch command l
From: |
Cleber Rosa |
Subject: |
[qemu-s390x] [PATCH v2 01/20] scripts/qemu.py: log QEMU launch command line |
Date: |
Fri, 1 Feb 2019 19:55:51 -0500 |
Even when the launch of QEMU succeeds, it's useful to have the command
line recorded.
Reviewed-by: Caio Carrara <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Alex Bennée <address@hidden>
Signed-off-by: Cleber Rosa <address@hidden>
---
scripts/qemu.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/scripts/qemu.py b/scripts/qemu.py
index 0a5e02eb56..eeaab99906 100644
--- a/scripts/qemu.py
+++ b/scripts/qemu.py
@@ -312,6 +312,7 @@ class QEMUMachine(object):
self._pre_launch()
self._qemu_full_args = (self._wrapper + [self._binary] +
self._base_args() + self._args)
+ LOG.debug('VM launch command: %r', ' '.join(self._qemu_full_args))
self._popen = subprocess.Popen(self._qemu_full_args,
stdin=devnull,
stdout=self._qemu_log_file,
--
2.20.1
- [qemu-s390x] [PATCH v2 16/20] Boot Linux Console Test: add a test for ppc64 + pseries, (continued)
[qemu-s390x] [PATCH v2 20/20] Boot Linux Console Test: add a test for alpha + clipper, Cleber Rosa, 2019/02/01
[qemu-s390x] [PATCH v2 10/20] Boot Linux Console Test: add common kernel command line options, Cleber Rosa, 2019/02/01
[qemu-s390x] [PATCH v2 01/20] scripts/qemu.py: log QEMU launch command line,
Cleber Rosa <=
[qemu-s390x] [PATCH v2 12/20] Boot Linux Console Test: refactor the console watcher into utility method, Cleber Rosa, 2019/02/01
[qemu-s390x] [PATCH v2 09/20] Boot Linux Console Test: update the x86_64 kernel, Cleber Rosa, 2019/02/01
[qemu-s390x] [PATCH v2 11/20] Boot Linux Console Test: increase timeout, Cleber Rosa, 2019/02/01
[qemu-s390x] [PATCH v2 13/20] scripts/qemu.py: support adding a console with the default serial device, Cleber Rosa, 2019/02/01
[qemu-s390x] [PATCH v2 08/20] Boot Linux Console Test: rename the x86_64 after the arch and machine, Cleber Rosa, 2019/02/01
[qemu-s390x] [PATCH v2 18/20] Boot Linux Console Test: add a test for arm + virt, Cleber Rosa, 2019/02/01
[qemu-s390x] [PATCH v2 06/20] Acceptance tests: use "arch:" tag to filter target specific tests, Cleber Rosa, 2019/02/01
[qemu-s390x] [PATCH v2 19/20] Boot Linux Console Test: add a test for s390x + s390-ccw-virtio, Cleber Rosa, 2019/02/01
[qemu-s390x] [PATCH v2 15/20] Boot Linux Console Test: add a test for mips64el + malta, Cleber Rosa, 2019/02/01