[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 1/7] iotests.py: support unsupported_fmts in main()
From: |
Kevin Wolf |
Subject: |
[Qemu-devel] [PULL 1/7] iotests.py: support unsupported_fmts in main() |
Date: |
Tue, 10 Apr 2018 17:37:42 +0200 |
From: Vladimir Sementsov-Ogievskiy <address@hidden>
Signed-off-by: Vladimir Sementsov-Ogievskiy <address@hidden>
Signed-off-by: Kevin Wolf <address@hidden>
---
tests/qemu-iotests/iotests.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index b5d7945af8..1623257e32 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -553,7 +553,8 @@ def verify_quorum():
if not supports_quorum():
notrun('quorum support missing')
-def main(supported_fmts=[], supported_oses=['linux'],
supported_cache_modes=[]):
+def main(supported_fmts=[], supported_oses=['linux'], supported_cache_modes=[],
+ unsupported_fmts=[]):
'''Run tests'''
global debug
@@ -568,7 +569,7 @@ def main(supported_fmts=[], supported_oses=['linux'],
supported_cache_modes=[]):
debug = '-d' in sys.argv
verbosity = 1
- verify_image_format(supported_fmts)
+ verify_image_format(supported_fmts, unsupported_fmts)
verify_platform(supported_oses)
verify_cache_mode(supported_cache_modes)
--
2.13.6
- [Qemu-devel] [PULL 0/7] Block layer patches for 2.12.0-rc3, Kevin Wolf, 2018/04/10
- [Qemu-devel] [PULL 3/7] iotests.py: improve verify_image_format helper, Kevin Wolf, 2018/04/10
- [Qemu-devel] [PULL 2/7] hw/block/pflash_cfi: fix off-by-one error, Kevin Wolf, 2018/04/10
- [Qemu-devel] [PULL 4/7] iotests: blacklist bochs and cloop for 205 and 208, Kevin Wolf, 2018/04/10
- [Qemu-devel] [PULL 6/7] commit/stream: Reset delay_ns, Kevin Wolf, 2018/04/10
- [Qemu-devel] [PULL 7/7] qemu-iotests: update 185 output, Kevin Wolf, 2018/04/10
- [Qemu-devel] [PULL 5/7] qemu-iotests: Remove _supported_fmt dmg, Kevin Wolf, 2018/04/10
- [Qemu-devel] [PULL 1/7] iotests.py: support unsupported_fmts in main(),
Kevin Wolf <=
- Re: [Qemu-devel] [PULL 0/7] Block layer patches for 2.12.0-rc3, Peter Maydell, 2018/04/11