mirror of https://github.com/xemu-project/xemu.git
iotests.py: support unsupported_fmts in main()
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
df6378eb0e
commit
febc8c865f
|
@ -553,7 +553,8 @@ def verify_quorum():
|
||||||
if not supports_quorum():
|
if not supports_quorum():
|
||||||
notrun('quorum support missing')
|
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'''
|
'''Run tests'''
|
||||||
|
|
||||||
global debug
|
global debug
|
||||||
|
@ -568,7 +569,7 @@ def main(supported_fmts=[], supported_oses=['linux'], supported_cache_modes=[]):
|
||||||
|
|
||||||
debug = '-d' in sys.argv
|
debug = '-d' in sys.argv
|
||||||
verbosity = 1
|
verbosity = 1
|
||||||
verify_image_format(supported_fmts)
|
verify_image_format(supported_fmts, unsupported_fmts)
|
||||||
verify_platform(supported_oses)
|
verify_platform(supported_oses)
|
||||||
verify_cache_mode(supported_cache_modes)
|
verify_cache_mode(supported_cache_modes)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue