From e18546ed13bc03d29a6ec57ca72844715b5f679f Mon Sep 17 00:00:00 2001 From: Tim Wiederhake Date: Tue, 15 Dec 2020 17:25:10 +0100 Subject: [PATCH] cpu-gather: Ignore empty responses from qemu Signed-off-by: Tim Wiederhake Reviewed-by: Michal Privoznik --- tests/cputestdata/cpu-gather.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/cputestdata/cpu-gather.py b/tests/cputestdata/cpu-gather.py index b6acae9eb7..10dbeb87cf 100755 --- a/tests/cputestdata/cpu-gather.py +++ b/tests/cputestdata/cpu-gather.py @@ -93,8 +93,12 @@ def call_qemu(qemu, qmp_cmds): exit("Error: File not found: '{}'.".format(qemu)) for line in output.split("\n"): - if line: - yield json.loads(line) + if not line: + continue + response = json.loads(line) + if "return" in response and not response["return"]: + continue + yield response def gather_model(args):