Blame SOURCES/kvm-iotests-Add-test-for-qemu-img-convert-C-compatibilit.patch

1bdc94
From 1ed06a7c22bbae0f9e17147c86ad2ecc69efb9bf Mon Sep 17 00:00:00 2001
1bdc94
From: Fam Zheng <famz@redhat.com>
1bdc94
Date: Wed, 1 Aug 2018 06:35:38 +0200
1bdc94
Subject: [PATCH 02/13] iotests: Add test for 'qemu-img convert -C'
1bdc94
 compatibility
1bdc94
1bdc94
RH-Author: Fam Zheng <famz@redhat.com>
1bdc94
Message-id: <20180801063538.32582-3-famz@redhat.com>
1bdc94
Patchwork-id: 81562
1bdc94
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 2/2] iotests: Add test for 'qemu-img convert -C' compatibility
1bdc94
Bugzilla: 1607774
1bdc94
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
1bdc94
RH-Acked-by: John Snow <jsnow@redhat.com>
1bdc94
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
1bdc94
1bdc94
Signed-off-by: Fam Zheng <famz@redhat.com>
1bdc94
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
1bdc94
(cherry picked from commit 8ba4f10fa689251facd483c3ee0ef4dd4e9bec53)
1bdc94
Signed-off-by: Fam Zheng <famz@redhat.com>
1bdc94
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
1bdc94
---
1bdc94
 tests/qemu-iotests/082     |  8 ++++++++
1bdc94
 tests/qemu-iotests/082.out | 11 +++++++++++
1bdc94
 2 files changed, 19 insertions(+)
1bdc94
1bdc94
diff --git a/tests/qemu-iotests/082 b/tests/qemu-iotests/082
1bdc94
index a872f77..3e605d5 100755
1bdc94
--- a/tests/qemu-iotests/082
1bdc94
+++ b/tests/qemu-iotests/082
1bdc94
@@ -158,6 +158,14 @@ run_qemu_img convert -o help
1bdc94
 run_qemu_img convert -O bochs -o help
1bdc94
 
1bdc94
 echo
1bdc94
+echo === convert: -C and other options ===
1bdc94
+
1bdc94
+# Adding the help option to a command without other -o options
1bdc94
+run_qemu_img convert -C -S 4k -O $IMGFMT "$TEST_IMG" "$TEST_IMG".target
1bdc94
+run_qemu_img convert -C -S 8k -O $IMGFMT "$TEST_IMG" "$TEST_IMG".target
1bdc94
+run_qemu_img convert -C -c -O $IMGFMT "$TEST_IMG" "$TEST_IMG".target
1bdc94
+
1bdc94
+echo
1bdc94
 echo === amend: Options specified more than once ===
1bdc94
 
1bdc94
 # Last -f should win
1bdc94
diff --git a/tests/qemu-iotests/082.out b/tests/qemu-iotests/082.out
1bdc94
index 60ef87c..19e9fb1 100644
1bdc94
--- a/tests/qemu-iotests/082.out
1bdc94
+++ b/tests/qemu-iotests/082.out
1bdc94
@@ -508,6 +508,17 @@ size             Virtual disk size
1bdc94
 Testing: convert -O bochs -o help
1bdc94
 qemu-img: Format driver 'bochs' does not support image creation
1bdc94
 
1bdc94
+=== convert: -C and other options ===
1bdc94
+
1bdc94
+Testing: convert -C -S 4k -O qcow2 TEST_DIR/t.qcow2 TEST_DIR/t.qcow2.target
1bdc94
+qemu-img: Cannot enable copy offloading when -S is used
1bdc94
+
1bdc94
+Testing: convert -C -S 8k -O qcow2 TEST_DIR/t.qcow2 TEST_DIR/t.qcow2.target
1bdc94
+qemu-img: Cannot enable copy offloading when -S is used
1bdc94
+
1bdc94
+Testing: convert -C -c -O qcow2 TEST_DIR/t.qcow2 TEST_DIR/t.qcow2.target
1bdc94
+qemu-img: Cannot enable copy offloading when -c is used
1bdc94
+
1bdc94
 === amend: Options specified more than once ===
1bdc94
 
1bdc94
 Testing: amend -f foo -f qcow2 -o lazy_refcounts=on TEST_DIR/t.qcow2
1bdc94
-- 
1bdc94
1.8.3.1
1bdc94