Automated testing output: Show description differently from test lines.

This commit is contained in:
Michael Drake 2019-02-16 15:21:42 +00:00
parent ceefe45205
commit d4b3889227

View File

@ -56,7 +56,7 @@ ret = 0
for test in test_set:
if test["kind"] == 'group':
print("Start group: {}".format(test["group"]))
print(" => {}".format(test["description"]))
print(" [ {} ]".format(test["description"]))
elif test["kind"] == 'test':
print(" => Run test: {}".format(test["filename"]))
ret = run_test(test["content"])