Kaydet (Commit) 8a34d416 authored tarafından Victor Stinner's avatar Victor Stinner

Issue #26295: Enhanc test_regrtest.test_tools_script_run_tests()

Pass all regrtest options, not only --testdir.
üst 732599f7
......@@ -514,7 +514,7 @@ class ProgramsTestCase(BaseTestCase):
def test_tools_script_run_tests(self):
# Tools/scripts/run_tests.py
script = os.path.join(ROOT_DIR, 'Tools', 'scripts', 'run_tests.py')
args = [script, '--testdir=%s' % self.tmptestdir, *self.tests]
args = [script, *self.regrtest_args, *self.tests]
self.run_tests(args)
def run_batch(self, *args):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment