本文整理汇总了Python中waflib.Logs.append方法的典型用法代码示例。如果您正苦于以下问题:Python Logs.append方法的具体用法?Python Logs.append怎么用?Python Logs.append使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类waflib.Logs
的用法示例。
在下文中一共展示了Logs.append方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: hwaf_utest_set_exit_code
# 需要导入模块: from waflib import Logs [as 别名]
# 或者: from waflib.Logs import append [as 别名]
def hwaf_utest_set_exit_code(bld, *k):
"""
If any of the tests fail waf will exit with that exit code.
This is useful if you have an automated build system which need
to report on errors from the tests.
You may use it like this:
def build(bld):
bld(features='cxx cxxprogram test', source='main.c', target='app')
bld.add_post_fun(hwaf_unit_set_exit_code)
"""
lst = getattr(bld, 'hwaf_utest_results', [])
if not lst:
return
msg = []
for (f, code, out, err, exp_rc) in lst:
if code != exp_rc:
msg.append('=== %s === (err=%d expected=%d)' % (f,code, exp_rc))
if out: msg.append('stdout:%s%s' % (os.linesep, out.decode('utf-8')))
if err: msg.append('stderr:%s%s' % (os.linesep, err.decode('utf-8')))
pass
pass
if msg: bld.fatal(os.linesep.join(msg))
return