From: Vladimir Sementsov-Ogievskiy Date: Wed, 16 Dec 2020 06:17:01 +0000 (+0300) Subject: iotests: 30: prepare to COR filter insertion by stream job X-Git-Tag: v6.0.0-rc0~125^2~41 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=9126a2dc4bde9dd282edc44c5e714b62dbe94918;p=users%2Fdwmw2%2Fqemu.git iotests: 30: prepare to COR filter insertion by stream job test_stream_parallel run parallel stream jobs, intersecting so that top of one is base of another. It's OK now, but it would be a problem if insert the filter, as one job will want to use another job's filter as above_base node. Correct thing to do is move to new interface: "bottom" argument instead of base. This guarantees that jobs don't intersect by their actions. Signed-off-by: Vladimir Sementsov-Ogievskiy Reviewed-by: Max Reitz Message-Id: <20201216061703.70908-12-vsementsov@virtuozzo.com> Signed-off-by: Max Reitz --- diff --git a/tests/qemu-iotests/030 b/tests/qemu-iotests/030 index 890784b116..f8a692432c 100755 --- a/tests/qemu-iotests/030 +++ b/tests/qemu-iotests/030 @@ -246,7 +246,9 @@ class TestParallelOps(iotests.QMPTestCase): node_name = 'node%d' % i job_id = 'stream-%s' % node_name pending_jobs.append(job_id) - result = self.vm.qmp('block-stream', device=node_name, job_id=job_id, base=self.imgs[i-2], speed=1024) + result = self.vm.qmp('block-stream', device=node_name, + job_id=job_id, bottom=f'node{i-1}', + speed=1024) self.assert_qmp(result, 'return', {}) for job in pending_jobs: