sapling/eden/scm/tests/test-issue4074.t
Jun Wu 73f0525b89 test-issue4074: fix py3 compatibility
Summary: There are multiple issues. Fix them.

Reviewed By: kulshrax

Differential Revision: D20231783

fbshipit-source-id: fc6be43fda088822fe8ff9dbd32410aa616c1772
2020-03-03 17:46:34 -08:00

31 lines
571 B
Perl

#chg-compatible
A script to generate nasty diff worst-case scenarios:
$ cat > s.py <<EOF
> import random, sys
> random.seed(int(sys.argv[-1]))
> for x in range(100000):
> print
> if random.randint(0, 100) >= 50:
> x += 1
> print(hex(x))
> EOF
$ hg init a
$ cd a
Check in a big file:
$ hg debugpython -- ../s.py 1 > a
$ hg ci -qAm0
Modify it:
$ hg debugpython -- ../s.py 2 > a
Time a check-in, should never take more than 10 seconds user time:
$ hg ci --time -m1
time: real .* secs .user [0-9][.].* sys .* (re)