|
|
22c213 |
From bb7b968a02c97564596b73d8d080cd745d96ed6b Mon Sep 17 00:00:00 2001
|
|
|
22c213 |
From: Kevin Wolf <kwolf@redhat.com>
|
|
|
22c213 |
Date: Fri, 13 Mar 2020 12:34:35 +0000
|
|
|
22c213 |
Subject: [PATCH 15/20] iotests: Fix run_job() with use_log=False
|
|
|
22c213 |
|
|
|
22c213 |
RH-Author: Kevin Wolf <kwolf@redhat.com>
|
|
|
22c213 |
Message-id: <20200313123439.10548-10-kwolf@redhat.com>
|
|
|
22c213 |
Patchwork-id: 94284
|
|
|
22c213 |
O-Subject: [RHEL-AV-8.2.0 qemu-kvm PATCH v2 09/13] iotests: Fix run_job() with use_log=False
|
|
|
22c213 |
Bugzilla: 1790482 1805143
|
|
|
22c213 |
RH-Acked-by: John Snow <jsnow@redhat.com>
|
|
|
22c213 |
RH-Acked-by: Daniel P. Berrange <berrange@redhat.com>
|
|
|
22c213 |
RH-Acked-by: Peter Krempa <pkrempa@redhat.com>
|
|
|
22c213 |
|
|
|
22c213 |
The 'job-complete' QMP command should be run with qmp() rather than
|
|
|
22c213 |
qmp_log() if use_log=False is passed.
|
|
|
22c213 |
|
|
|
22c213 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
22c213 |
Message-Id: <20200310113831.27293-4-kwolf@redhat.com>
|
|
|
22c213 |
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
|
|
|
22c213 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
22c213 |
(cherry picked from commit b31b532122ec6f68d17168449c034d2197bf96ec)
|
|
|
22c213 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
22c213 |
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
|
22c213 |
---
|
|
|
22c213 |
tests/qemu-iotests/iotests.py | 5 ++++-
|
|
|
22c213 |
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
22c213 |
|
|
|
22c213 |
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
|
|
|
22c213 |
index 0c55f7b..46f880c 100644
|
|
|
22c213 |
--- a/tests/qemu-iotests/iotests.py
|
|
|
22c213 |
+++ b/tests/qemu-iotests/iotests.py
|
|
|
22c213 |
@@ -618,7 +618,10 @@ class VM(qtest.QEMUQtestMachine):
|
|
|
22c213 |
if use_log:
|
|
|
22c213 |
log('Job failed: %s' % (j['error']))
|
|
|
22c213 |
elif status == 'ready':
|
|
|
22c213 |
- self.qmp_log('job-complete', id=job)
|
|
|
22c213 |
+ if use_log:
|
|
|
22c213 |
+ self.qmp_log('job-complete', id=job)
|
|
|
22c213 |
+ else:
|
|
|
22c213 |
+ self.qmp('job-complete', id=job)
|
|
|
22c213 |
elif status == 'pending' and not auto_finalize:
|
|
|
22c213 |
if pre_finalize:
|
|
|
22c213 |
pre_finalize()
|
|
|
22c213 |
--
|
|
|
22c213 |
1.8.3.1
|
|
|
22c213 |
|