sapling/eden/scm/tests/test-template-filestat.t
Muir Manders 1dcb7966fc tests: turn on eagerepo for a bunch of tests
Summary: These are the tests that passed after adding "$ eagerepo". I attempted to turn on eagerepo for all tests that didn't contain "$ eagerepo" or "configure modern".

Reviewed By: quark-zju

Differential Revision: D44445379

fbshipit-source-id: b283be6d5249f74e11a3205622961e457587e93b
2023-04-04 08:42:03 -07:00

69 lines
1.8 KiB
Perl

#chg-compatible
#debugruntest-compatible
$ eagerepo
$ newrepo
$ touch base
$ hg commit -Am A
adding base
$ echo somedata > base
$ touch other
$ hg commit -Am B
adding other
$ hg rm base
$ echo somemoredata > other
$ hg commit -m C
$ hg log --graph -T '{filestat}'
@ 2 filestats
o 2 filestats
o 1 filestat
$ hg log --graph -T '{filestat|json}'
@ [{"name": "other", "op": "M", "size": 13, "type": "n"}, {"name": "base", "op": "R", "size": 0, "type": "r"}]
o [{"name": "base", "op": "M", "size": 9, "type": "n"}, {"name": "other", "op": "A", "size": 0, "type": "n"}]
o [{"name": "base", "op": "A", "size": 0, "type": "n"}]
$ hg log -T '{filestat % "{node|short} {op} {type} {size} {name}\n"}'
bdfc298dced0 M n 13 other
bdfc298dced0 R r 0 base
7f32e4a2ca03 M n 9 base
7f32e4a2ca03 A n 0 other
ca66854ba526 A n 0 base
#if no-windows
$ chmod +x other
$ ln -s other link
$ hg commit -Am "D"
adding link
$ hg log --graph -T '{filestat}'
@ 2 filestats
o 2 filestats
o 2 filestats
o 1 filestat
$ hg log --graph -T '{filestat|json}'
@ [{"name": "other", "op": "M", "size": 13, "type": "x"}, {"name": "link", "op": "A", "size": 5, "type": "l"}]
o [{"name": "other", "op": "M", "size": 13, "type": "n"}, {"name": "base", "op": "R", "size": 0, "type": "r"}]
o [{"name": "base", "op": "M", "size": 9, "type": "n"}, {"name": "other", "op": "A", "size": 0, "type": "n"}]
o [{"name": "base", "op": "A", "size": 0, "type": "n"}]
$ hg log -T '{filestat % "{node|short} {op} {type} {size} {name}\n"}'
8c2b56d0093b M x 13 other
8c2b56d0093b A l 5 link
bdfc298dced0 M n 13 other
bdfc298dced0 R r 0 base
7f32e4a2ca03 M n 9 base
7f32e4a2ca03 A n 0 other
ca66854ba526 A n 0 base
#endif