sapling/eden/scm/tests/test-edit-tmp.t
Jun Wu 75a8173a10 tests: enable chg for 572 tests
Summary:
Add `#chg-compatible` to 572 tests that seem to pass with chg enabled.
This should make them run faster.

Reviewed By: xavierd

Differential Revision: D18870507

fbshipit-source-id: fe895e733efffc9286cd3d17c7a156c803124395
2019-12-09 15:26:29 -08:00

36 lines
743 B
Perl

#chg-compatible
$ newrepo
$ setconfig ui.allowemptycommit=1
$ enable amend
$ HGEDITOR=true hg commit -m 1 -e
$ HGEDITOR=true hg commit --amend -m 2 -e
$ HGEDITOR='echo 3 >' hg metaedit
All 3 files are here:
$ python << EOF
> import os
> names = os.listdir('.hg/edit-tmp')
> print(names)
> for name in names:
> os.utime(os.path.join('.hg/edit-tmp', name), (0, 0))
> EOF
['*', '*', '*'] (glob)
$ HGEDITOR=true hg commit -m 4 -e
Those files will be cleaned up since they have ancient mtime:
$ python << EOF
> import os
> print(os.listdir('.hg/edit-tmp'))
> EOF
['*'] (glob)
Verify that a folder in .hg/edit-tmp doesn't crash hg:
$ mkdir .hg/edit-tmp/foo
$ HGEDITOR=true hg commit -m 5 -e