Issue #26295: Enhanc test_regrtest.test_tools_script_run_tests()

Pass all regrtest options, not only --testdir.
diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py
index b4083b8..213853f 100644
--- a/Lib/test/test_regrtest.py
+++ b/Lib/test/test_regrtest.py
@@ -514,7 +514,7 @@
     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):