view tests/testlib/random-revs.py @ 5811:4688b7eb7e40

evolve: preserve wdir when using --stop After this change using hg evolve --stop update the working copy parent back to where the working copy was before the hg evolve operation (or the successors of that)
author Sushil khanchi <sushilkhanchi97@gmail.com>
date Wed, 26 Aug 2020 23:27:17 +0530
parents 11b8f7003713
children
line wrap: on
line source

#!/usr/bin/env python
"""
This simple script outputs a sequence of numbers separated by newlines. The
amount of numbers and their approximate values can be controlled by two command
line arguments.

Usage: $0 COUNT MAXADD. COUNT will determine the amount of numbers printed, and
MAXADD will limit the value that will be added to each of those numbers.
"""

from __future__ import print_function

import random
import sys

def main():
    count = int(sys.argv[1])
    maxadd = int(sys.argv[2])
    for x in range(count):
        print(x + random.randint(0, maxadd))

if __name__ == '__main__':
    main()