Lines Matching +full:total +full:- +full:timeout
32 # This test was added to check that mirror dead-lock was fixed (see previous
47 qemu_img_create('-f', iotests.imgfmt, '-o', 'preallocation=metadata', disk,
51 vm.add_args('-accel', 'kvm', '-accel', 'tcg')
52 if iotests.qemu_default_machine == 's390-ccw-virtio':
53 vm.add_args('-no-shutdown')
54 vm.add_args('-drive', 'id=src,file=' + disk)
57 log(vm.qmp('object-add', qom_type='throttle-group', id='tg0',
58 limits={'bps-total': size}))
60 log(vm.qmp('blockdev-add',
61 **{ 'node-name': 'target',
63 'throttle-group': 'tg0',
65 'driver': 'null-co',
69 log(vm.qmp('blockdev-mirror', device='src', target='target', sync='full'))
72 vm.event_wait('BLOCK_JOB_READY', timeout=10.0)