b7616307b7
Include SLE feature requests, misc upstream stable bug fixes, and repair Jira feature references OBS-URL: https://build.opensuse.org/request/show/762845 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=521
35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
From: Thomas Huth <thuth@redhat.com>
|
|
Date: Mon, 2 Dec 2019 11:16:31 +0100
|
|
Subject: iotests: Skip test 079 if it is not possible to create large files
|
|
|
|
Git-commit: e28582fdb28b2e8b29a351c20b0c8f1af4120688
|
|
|
|
Test 079 fails in the arm64, s390x and ppc64le LXD containers on Travis
|
|
(which we will hopefully enable in our CI soon). These containers
|
|
apparently do not allow large files to be created. Test 079 tries to
|
|
create a 4G sparse file, which is apparently already too big for these
|
|
containers, so check first whether we can really create such files before
|
|
executing the test.
|
|
|
|
Signed-off-by: Thomas Huth <thuth@redhat.com>
|
|
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
|
---
|
|
tests/qemu-iotests/079 | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/tests/qemu-iotests/079 b/tests/qemu-iotests/079
|
|
index 81f0c21f530287b2c833eefd735d..78536d3bbfa01fc0575d31d1f680 100755
|
|
--- a/tests/qemu-iotests/079
|
|
+++ b/tests/qemu-iotests/079
|
|
@@ -39,6 +39,9 @@ trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
_supported_fmt qcow2
|
|
_supported_proto file nfs
|
|
|
|
+# Some containers (e.g. non-x86 on Travis) do not allow large files
|
|
+_require_large_file 4G
|
|
+
|
|
echo "=== Check option preallocation and cluster_size ==="
|
|
echo
|
|
cluster_sizes="16384 32768 65536 131072 262144 524288 1048576 2097152 4194304"
|