From: Stefan Behnel Date: Thu, 15 Oct 2009 14:08:52 +0000 (+0200) Subject: reenable test forking in test runner X-Git-Tag: 0.13.beta0~2^2~121^2~47 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=684feedc85403aeefe91c59cb97edf8be4e61024;p=cython.git reenable test forking in test runner --- diff --git a/runtests.py b/runtests.py index b0345d1d..efb4d421 100644 --- a/runtests.py +++ b/runtests.py @@ -387,7 +387,7 @@ class CythonRunTestCase(CythonCompileTestCase): pass def run_doctests(self, module_name, result): - if sys.version_info[0] >= 3 or not hasattr(os, 'forkx'): + if sys.version_info[0] >= 3 or not hasattr(os, 'fork'): doctest.DocTestSuite(module_name).run(result) return