# HG changeset patch # User Adrian Buehlmann # Date 1356013121 -3600 # Node ID acfc6fab13617482899ac71287edf4f23fe6f06f # Parent 9e3910db4e787787c315808f37ceecf695cb18c9 test-pathencode: accept --seed parameter in hex as well test-pathencode.py outputs the seed value in hex if it finds a deviation. This change allows to specify the seed value as a command line parameter for test-pathencode.py in hex as well. diff -r 9e3910db4e78 -r acfc6fab1361 tests/test-pathencode.py --- a/tests/test-pathencode.py Thu Dec 13 23:37:53 2012 +0100 +++ b/tests/test-pathencode.py Thu Dec 20 15:18:41 2012 +0100 @@ -177,7 +177,7 @@ if o in ('-c', '--count'): count = int(a) elif o in ('-s', '--seed'): - seed = long(a) + seed = long(a, base=0) # accepts base 10 or 16 strings elif o == '--build': buildprobtable(sys.stdout, 'find .hg/store/data -type f && '