diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2013-07-06 12:25:52 +0200 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2013-07-06 12:25:52 +0200 |
commit | d9e7c86d7e0593c13155c1b6c47c4e64fdbc39ac (patch) | |
tree | 3e35f0619a4c53014ef880943e457cbd8af7914e /Lib/test/regrtest.py | |
parent | a68650553d8e5339610286643dfe4f078244c5ba (diff) | |
download | cpython-git-d9e7c86d7e0593c13155c1b6c47c4e64fdbc39ac.tar.gz |
Issue #18375: Assume --randomize when --randseed is used for running the testsuite.
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index ddb6b9230c..ae62c6e7a0 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -346,6 +346,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, elif o in ('-r', '--randomize'): randomize = True elif o == '--randseed': + randomize = True random_seed = int(a) elif o in ('-f', '--fromfile'): fromfile = a |