test runner fix
authorStefan Behnel <scoder@users.berlios.de>
Thu, 14 Aug 2008 10:58:31 +0000 (12:58 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 14 Aug 2008 10:58:31 +0000 (12:58 +0200)
runtests.py

index 175273afa5ab12125f2291bce75727b3e3e022c2..b44b0f97e7c2f70c55febac4621f922642496753 100644 (file)
@@ -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'),