From: Stefan Behnel Date: Thu, 14 Aug 2008 10:58:31 +0000 (+0200) Subject: test runner fix X-Git-Tag: 0.9.8.1~48 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7bc8549aa00f6969240d49fa775f7062bfd12ca5;p=cython.git test runner fix --- diff --git a/runtests.py b/runtests.py index 175273af..b44b0f97 100644 --- a/runtests.py +++ b/runtests.py @@ -454,13 +454,15 @@ if __name__ == '__main__': if options.filetests: filetests = TestBuilder(ROOTDIR, WORKDIR, selectors, options.annotate_source, options.cleanup_workdir, - options.cleanup_sharedlibs, options.pyregr, options.cythononly) + options.cleanup_sharedlibs, options.pyregr, + options.cythononly) test_suite.addTest(filetests.build_suite()) if options.system_pyregr: filetests = TestBuilder(ROOTDIR, WORKDIR, selectors, options.annotate_source, options.cleanup_workdir, - options.cleanup_sharedlibs, True) + options.cleanup_sharedlibs, True, + options.cythononly) test_suite.addTest( filetests.handle_directory( os.path.join(sys.prefix, 'lib', 'python'+sys.version[:3], 'test'),