diff options
author | Eric Blake <eblake@redhat.com> | 2019-01-11 14:13:30 -0600 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2019-01-17 17:52:40 -0200 |
commit | 0cabc8f15e1be8b0f50f70699e9561b339d5c53f (patch) | |
tree | de60e7f0af795504dc1c22417e00045e49b009bc /scripts | |
parent | 82d4c923a580751c86dc0852a7cc8e369a78e8ad (diff) |
qemu.py: Fix error message when qemu dies from signal
When qemu dies from a signal, the python code gets a negative
value for exitcode; but signal numbers are positive. Copy the
pattern used in qemu-iotests/iotests.py for reporting a positive
value.
CC: qemu-trivial@nongnu.org
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20190111201330.14473-1-eblake@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/qemu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qemu.py b/scripts/qemu.py index 6e3b0e6771..0a5e02eb56 100644 --- a/scripts/qemu.py +++ b/scripts/qemu.py @@ -351,7 +351,7 @@ class QEMUMachine(object): command = ' '.join(self._qemu_full_args) else: command = '' - LOG.warn(msg, exitcode, command) + LOG.warn(msg, -exitcode, command) self._launched = False |