mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 22:47:26 +03:00
e0e01cbc81
Summary: This broke a bunch of tests. Revert it and re-enable all the tests. Reviewed By: DurhamG Differential Revision: D19665042 fbshipit-source-id: c3c17e3ac7e2ea028be5b5836bc8349cdf56184e
36 lines
743 B
Perl
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
|