sapling/eden/scm/tests/test-issue4074.t
Jun Wu 00ecfbb16c tests: opt-in new test runner for passing tests
Summary:
A lot of tests are passing with the new test runner.

This is done by `./edit-feature-header.py debugruntest` and paste
the `Passed:` section from `hg debugruntest -v test-*.t` output.

Note: some tests fail with this but pass with debugruntest. They
will be investigated as follow-up.

Differential Revision: D34931992

fbshipit-source-id: 99abc3d9800bb1dd3487dbfa15d715c0bd3ba878
2022-08-16 14:59:23 -07:00

32 lines
596 B
Perl

#chg-compatible
#debugruntest-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)