本文整理汇总了Python中vunit.ostools.Process.terminate方法的典型用法代码示例。如果您正苦于以下问题:Python Process.terminate方法的具体用法?Python Process.terminate怎么用?Python Process.terminate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vunit.ostools.Process
的用法示例。
在下文中一共展示了Process.terminate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_output_is_parallel
# 需要导入模块: from vunit.ostools import Process [as 别名]
# 或者: from vunit.ostools.Process import terminate [as 别名]
def test_output_is_parallel(self):
python_script = self.make_file("run_timeout.py", r"""
from time import sleep
from sys import stdout
stdout.write("message\n")
stdout.flush()
sleep(1000)
""")
process = Process([sys.executable, python_script])
message = process.next_line()
process.terminate()
self.assertEqual(message, "message")