Commit eb261b57 authored by Mike Rapoport's avatar Mike Rapoport Committed by Andrei Vagin

zdtm: introduce 'noremotelazy' flag

This allows skipping tests that are not yet run with --remote-lazy-pages,
but can be run with --lazy-pages
Signed-off-by: 's avatarMike Rapoport <rppt@linux.vnet.ibm.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent a9ea60f8
......@@ -1709,6 +1709,11 @@ def run_tests(opts):
l.skip(t, "lazy pages are not supported")
continue
if opts['remote_lazy_pages']:
if test_flag(tdesc, 'noremotelazy'):
l.skip(t, "remote lazy pages are not supported")
continue
test_flavs = tdesc.get('flavor', 'h ns uns').split()
opts_flavs = (opts['flavor'] or 'h,ns,uns').split(',')
if opts_flavs != ['best']:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment