waf_unit_test: correct also demos/playgrounds with addition of ut_task change

This commit is contained in:
Federico Pellegrin 2020-04-24 08:52:01 +02:00
parent ba9ddfbfcb
commit 04e586b28a
4 changed files with 4 additions and 4 deletions

View File

@ -78,7 +78,7 @@ def print_test_results(bld):
lst = getattr(bld, 'utest_results', [])
if not lst:
return
for (f, code, out, err) in lst:
for (f, code, out, err, ut_task) in lst:
print(out.decode('utf-8'))
print(err.decode('utf-8'))

View File

@ -29,7 +29,7 @@ def gtest_results(bld):
lst = getattr(bld, 'utest_results', [])
if not lst:
return
for (f, code, out, err) in lst:
for (f, code, out, err, ut_task) in lst:
# if not code:
# continue

View File

@ -14,7 +14,7 @@ def test_results(bld):
lst = getattr(bld, 'utest_results', [])
if not lst:
return
for (f, code, out, err) in lst:
for (f, code, out, err, ut_task) in lst:
print(out.decode('utf-8'))
print(err.decode('utf-8'))

View File

@ -18,7 +18,7 @@ def test_results(bld):
lst = getattr(bld, 'utest_results', [])
if not lst:
return
for (f, code, out, err) in lst:
for (f, code, out, err, ut_task) in lst:
print(out.decode('utf-8'))
print(err.decode('utf-8'))