[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 06/16] iotests: Skip test 079 if it is not possible to create
From: |
Alex Bennée |
Subject: |
[PATCH v1 06/16] iotests: Skip test 079 if it is not possible to create large files |
Date: |
Mon, 16 Dec 2019 11:07:22 +0000 |
From: Thomas Huth <address@hidden>
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 <address@hidden>
Signed-off-by: Alex Bennée <address@hidden>
Message-Id: <address@hidden>
---
tests/qemu-iotests/079 | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tests/qemu-iotests/079 b/tests/qemu-iotests/079
index 81f0c21f530..78536d3bbfa 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"
--
2.20.1
- [PATCH v1 00/16] testing and logging changes for master, Alex Bennée, 2019/12/16
- [PATCH v1 01/16] configure: allow disable of cross compilation containers, Alex Bennée, 2019/12/16
- [PATCH v1 02/16] tests/vm: Allow to set qemu-img path, Alex Bennée, 2019/12/16
- [PATCH v1 03/16] travis.yml: Run tcg tests with tci, Alex Bennée, 2019/12/16
- [PATCH v1 04/16] iotests: Provide a function for checking the creation of huge files, Alex Bennée, 2019/12/16
- [PATCH v1 05/16] iotests: Skip test 060 if it is not possible to create large files, Alex Bennée, 2019/12/16
- [PATCH v1 06/16] iotests: Skip test 079 if it is not possible to create large files,
Alex Bennée <=
- [PATCH v1 07/16] tests/hd-geo-test: Skip test when images can not be created, Alex Bennée, 2019/12/16
- [PATCH v1 08/16] tests/test-util-filemonitor: Skip test on non-x86 Travis containers, Alex Bennée, 2019/12/16
- [PATCH v1 10/16] ci: build out-of-tree, Alex Bennée, 2019/12/16
- [PATCH v1 11/16] Fix double free issue in qemu_set_log_filename()., Alex Bennée, 2019/12/16
- [PATCH v1 09/16] travis.yml: Enable builds on arm64, ppc64le and s390x, Alex Bennée, 2019/12/16
- [PATCH v1 13/16] Add a mutex to guarantee single writer to qemu_logfile handle., Alex Bennée, 2019/12/16
- [PATCH v1 16/16] Added tests for close and change of logfile., Alex Bennée, 2019/12/16
- [PATCH v1 12/16] Cleaned up flow of code in qemu_set_log(), to simplify and clarify., Alex Bennée, 2019/12/16