Show More
@@ -188,7 +188,7 b' def main():' | |||||
188 | if o in ('-c', '--count'): |
|
188 | if o in ('-c', '--count'): | |
189 | count = int(a) |
|
189 | count = int(a) | |
190 | elif o in ('-s', '--seed'): |
|
190 | elif o in ('-s', '--seed'): | |
191 |
seed = |
|
191 | seed = int(a, base=0) # accepts base 10 or 16 strings | |
192 | elif o == '--build': |
|
192 | elif o == '--build': | |
193 | buildprobtable(sys.stdout, |
|
193 | buildprobtable(sys.stdout, | |
194 | 'find .hg/store/data -type f && ' |
|
194 | 'find .hg/store/data -type f && ' | |
@@ -197,9 +197,9 b' def main():' | |||||
197 |
|
197 | |||
198 | if seed is None: |
|
198 | if seed is None: | |
199 | try: |
|
199 | try: | |
200 |
seed = |
|
200 | seed = int(binascii.hexlify(os.urandom(16)), 16) | |
201 | except AttributeError: |
|
201 | except AttributeError: | |
202 |
seed = |
|
202 | seed = int(time.time() * 1000) | |
203 |
|
203 | |||
204 | rng = random.Random(seed) |
|
204 | rng = random.Random(seed) | |
205 | if runtests(rng, seed, count): |
|
205 | if runtests(rng, seed, count): |
General Comments 0
You need to be logged in to leave comments.
Login now