当前位置: 首页>>代码示例>>Python>>正文


Python test_support.reap_children方法代码示例

本文整理汇总了Python中test.test_support.reap_children方法的典型用法代码示例。如果您正苦于以下问题:Python test_support.reap_children方法的具体用法?Python test_support.reap_children怎么用?Python test_support.reap_children使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在test.test_support的用法示例。


在下文中一共展示了test_support.reap_children方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_popen

# 需要导入模块: from test import test_support [as 别名]
# 或者: from test.test_support import reap_children [as 别名]
def test_popen(self):
        self.assertRaises(TypeError, os.popen)
        self._do_test_commandline(
            "foo bar",
            ["foo", "bar"]
        )
        self._do_test_commandline(
            'foo "spam and eggs" "silly walk"',
            ["foo", "spam and eggs", "silly walk"]
        )
        self._do_test_commandline(
            'foo "a \\"quoted\\" arg" bar',
            ["foo", 'a "quoted" arg', "bar"]
        )
        test_support.reap_children() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:17,代码来源:test_popen.py

示例2: tearDown

# 需要导入模块: from test import test_support [as 别名]
# 或者: from test.test_support import reap_children [as 别名]
def tearDown(self):
        support.threading_cleanup(*self._threads)
        support.reap_children() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:5,代码来源:lock_tests.py

示例3: setUp

# 需要导入模块: from test import test_support [as 别名]
# 或者: from test.test_support import reap_children [as 别名]
def setUp(self):
        # Try to minimize the number of children we have so this test
        # doesn't crash on some buildbots (Alphas in particular).
        test_support.reap_children() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:6,代码来源:test_subprocess.py

示例4: tearDown

# 需要导入模块: from test import test_support [as 别名]
# 或者: from test.test_support import reap_children [as 别名]
def tearDown(self):
        for inst in subprocess._active:
            inst.wait()
        subprocess._cleanup()
        self.assertFalse(subprocess._active, "subprocess._active not empty")
        self.doCleanups()
        test_support.reap_children() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:9,代码来源:test_subprocess.py

示例5: test_main

# 需要导入模块: from test import test_support [as 别名]
# 或者: from test.test_support import reap_children [as 别名]
def test_main():
    unit_tests = (ProcessTestCase,
                  POSIXProcessTestCase,
                  Win32ProcessTestCase,
                  ProcessTestCaseNoPoll,
                  HelperFunctionTests,
                  CommandsWithSpaces)

    test_support.run_unittest(*unit_tests)
    test_support.reap_children() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:12,代码来源:test_subprocess.py

示例6: test_main

# 需要导入模块: from test import test_support [as 别名]
# 或者: from test.test_support import reap_children [as 别名]
def test_main():
    test_support.run_unittest(distutils.tests.test_suite())
    test_support.reap_children() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:5,代码来源:test_distutils.py

示例7: test_main

# 需要导入模块: from test import test_support [as 别名]
# 或者: from test.test_support import reap_children [as 别名]
def test_main():
    test_support.run_unittest(unittest.test.suite())
    test_support.reap_children() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:5,代码来源:test_unittest.py

示例8: test_main

# 需要导入模块: from test import test_support [as 别名]
# 或者: from test.test_support import reap_children [as 别名]
def test_main():
    tests = (TestMailboxSuperclass, TestMaildir, TestMbox, TestMMDF, TestMH,
             TestBabyl, TestMessage, TestMaildirMessage, TestMboxMessage,
             TestMHMessage, TestBabylMessage, TestMMDFMessage,
             TestMessageConversion, TestProxyFile, TestPartialFile,
             MaildirTestCase)
    test_support.run_unittest(*tests)
    test_support.reap_children() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:10,代码来源:test_mailbox.py

示例9: test_main

# 需要导入模块: from test import test_support [as 别名]
# 或者: from test.test_support import reap_children [as 别名]
def test_main():
    test_support.run_unittest(SelectTestCase)
    test_support.reap_children() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:5,代码来源:test_select.py

示例10: test_main

# 需要导入模块: from test import test_support [as 别名]
# 或者: from test.test_support import reap_children [as 别名]
def test_main():
    test_support.run_unittest(
        BZ2FileTest,
        BZ2CompressorTest,
        BZ2DecompressorTest,
        FuncTest
    )
    test_support.reap_children() 
开发者ID:dxwu,项目名称:BinderFilter,代码行数:10,代码来源:test_bz2.py


注:本文中的test.test_support.reap_children方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。