Kaydet (Commit) d9e7c86d authored tarafından Florent Xicluna's avatar Florent Xicluna

Issue #18375: Assume --randomize when --randseed is used for running the testsuite.

üst a6865055
...@@ -346,6 +346,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, ...@@ -346,6 +346,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
elif o in ('-r', '--randomize'): elif o in ('-r', '--randomize'):
randomize = True randomize = True
elif o == '--randseed': elif o == '--randseed':
randomize = True
random_seed = int(a) random_seed = int(a)
elif o in ('-f', '--fromfile'): elif o in ('-f', '--fromfile'):
fromfile = a fromfile = a
......
...@@ -158,6 +158,9 @@ IDLE ...@@ -158,6 +158,9 @@ IDLE
Tests Tests
----- -----
- Issue #18375: Assume --randomize when --randseed is used for running the
testsuite.
- Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé. - Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé.
- Issue #17691: test_univnewlines now works with unittest test discovery. - Issue #17691: test_univnewlines now works with unittest test discovery.
......
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