2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 09:57:15 +01:00

Fix waf_unit_test class name

This commit is contained in:
Matt Selsky 2017-12-02 21:38:43 -05:00 committed by ita1024
parent 2a4c4f0b66
commit f8f4f74403
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ def summary(bld):
def build(bld):
bld.recurse('src tests')
# unittestw.summary is a pretty ugly function for displaying a report (feel free to improve!)
# waf_unit_test.summary is a pretty ugly function for displaying a report (feel free to improve!)
# results -> bld.utest_results [(filename, returncode, stdout, stderr), (..., ), ...]
#bld.add_post_fun(waf_unit_test.summary)
bld.add_post_fun(summary)

View File

@ -52,7 +52,7 @@ def gtest_results(bld):
def build(bld):
bld.recurse('src tests')
# unittestw.summary is a pretty ugly function for displaying a report (feel free to improve!)
# waf_unit_test.summary is a pretty ugly function for displaying a report (feel free to improve!)
# results -> bld.utest_results [(filename, returncode, stdout, stderr), (..., ), ...]
#bld.add_post_fun(waf_unit_test.summary)
bld.add_post_fun(gtest_results)