Commit 4c1ffde8 authored by Andrew Vagin's avatar Andrew Vagin Committed by Pavel Emelyanov

zdtm.py: print separators between tests

Signed-off-by: 's avatarAndrew Vagin <avagin@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent ed8a13b7
......@@ -412,8 +412,9 @@ def do_run_test(tname, tdesc, flavs, opts):
print "Unknown test class %s" % tcname
return
print "Run %s in %s" % (tname, flavs)
for f in flavs:
print
print_sep("Run %s in %s" % (tname, f))
flav = flavors[f](opts)
t = tclass(tname, tdesc, flav)
......@@ -432,7 +433,7 @@ def do_run_test(tname, tdesc, flavs, opts):
# aborts the main script execution on the 1st error met
sys.exit(1)
else:
print "Test %s PASS" % tname
print_sep("Test %s PASS" % tname)
class launcher:
def __init__(self, opts):
......
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