本文整理汇总了Python中module.Module.get_test_modules方法的典型用法代码示例。如果您正苦于以下问题:Python Module.get_test_modules方法的具体用法?Python Module.get_test_modules怎么用?Python Module.get_test_modules使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类module.Module
的用法示例。
在下文中一共展示了Module.get_test_modules方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from module import Module [as 别名]
# 或者: from module.Module import get_test_modules [as 别名]
def main():
patt = re.compile(
'^.*\\.(?:' +
'|'.join('(?:' + re.escape(ext) + ')' for ext in FILE_EXTENSIONS) +
')$')
input_dir_prefix_len = len(INPUT_DIR) + 1
for base, dirnames, filenames in os.walk(INPUT_DIR):
for filename in filenames:
if not patt.match(filename):
print('ignore:', filename)
continue
input_path = os.path.join(base, filename)
input_rel_path = input_path[input_dir_prefix_len:]
output_path = os.path.join(EXPECTED_DIR, input_rel_path)
print('generating', output_path, '...')
output_content = run_header_abi_dumper(input_path)
os.makedirs(os.path.dirname(output_path), exist_ok=True)
with open(output_path, 'w') as f:
f.write(output_content)
modules = Module.get_test_modules()
for module in modules:
print('Created abi dump at', make_and_copy_reference_dumps(module))
return 0