Blame SOURCES/kvm-iotests-improve-169.patch

383d26
From 2002520b4c5e6ca74367f9db22a53d5a463b9de2 Mon Sep 17 00:00:00 2001
383d26
From: John Snow <jsnow@redhat.com>
383d26
Date: Wed, 6 Feb 2019 22:12:42 +0100
383d26
Subject: [PATCH 32/33] iotests: improve 169
383d26
383d26
RH-Author: John Snow <jsnow@redhat.com>
383d26
Message-id: <20190206221243.7407-23-jsnow@redhat.com>
383d26
Patchwork-id: 84281
383d26
O-Subject: [RHEL-7.7 qemu-kvm-rhev PATCH v2 22/23] iotests: improve 169
383d26
Bugzilla: 1658343
383d26
RH-Acked-by: Thomas Huth <thuth@redhat.com>
383d26
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
383d26
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
383d26
383d26
From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
383d26
383d26
Before previous patch, iotest 169 was actually broken for the case
383d26
test_persistent__not_migbitmap__offline_shared, while formally
383d26
passing.
383d26
383d26
After migration log of vm_b had message:
383d26
383d26
    qemu-system-x86_64: Could not reopen qcow2 layer: Bitmap already
383d26
    exists: bitmap0
383d26
383d26
which means that invalidation failed and bs->drv = NULL.
383d26
383d26
It was because we've loaded bitmap twice: on open and on invalidation.
383d26
383d26
Add code to 169, to catch such fails.
383d26
383d26
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
383d26
Signed-off-by: John Snow <jsnow@redhat.com>
383d26
(cherry picked from commit b9247fc1a8ffe5c367fa049f295fbb58c8ca9d05)
383d26
Signed-off-by: John Snow <jsnow@redhat.com>
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 tests/qemu-iotests/169 | 9 +++++++++
383d26
 1 file changed, 9 insertions(+)
383d26
383d26
diff --git a/tests/qemu-iotests/169 b/tests/qemu-iotests/169
383d26
index df408f8..8b7947d 100755
383d26
--- a/tests/qemu-iotests/169
383d26
+++ b/tests/qemu-iotests/169
383d26
@@ -24,6 +24,7 @@ import time
383d26
 import itertools
383d26
 import operator
383d26
 import new
383d26
+import re
383d26
 from iotests import qemu_img
383d26
 
383d26
 
383d26
@@ -133,6 +134,14 @@ class TestDirtyBitmapMigration(iotests.QMPTestCase):
383d26
 
383d26
         if should_migrate:
383d26
             self.vm_b.shutdown()
383d26
+
383d26
+            # catch 'Could not reopen qcow2 layer: Bitmap already exists'
383d26
+            # possible error
383d26
+            log = self.vm_b.get_log()
383d26
+            log = re.sub(r'^\[I \d+\.\d+\] OPENED\n', '', log)
383d26
+            log = re.sub(r'\[I \+\d+\.\d+\] CLOSED\n?$', '', log)
383d26
+            self.assertEqual(log, '')
383d26
+
383d26
             # recreate vm_b, as we don't want -incoming option (this will lead
383d26
             # to "cat" process left alive after test finish)
383d26
             self.vm_b = iotests.VM(path_suffix='b')
383d26
-- 
383d26
1.8.3.1
383d26