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
32 lines
812 B
Perl
32 lines
812 B
Perl
#chg-compatible
|
|
|
|
Test logging of "M" entries
|
|
|
|
$ newrepo
|
|
$ setconfig experimental.samplestatus=2 blackbox.track=status
|
|
|
|
$ echo 1 > a
|
|
$ hg commit -A a -m a
|
|
|
|
$ echo 2 >> a
|
|
$ hg status
|
|
M a
|
|
$ hg blackbox --no-timestamp --no-sid --pattern '{"legacy_log":{"service":"status"}}'
|
|
[legacy][status] M a: size changed (2 -> 4)
|
|
|
|
$ sleep 1
|
|
$ rm -rf a .hg/blackbox*
|
|
$ touch a
|
|
$ hg status
|
|
M a
|
|
$ hg blackbox --no-timestamp --no-sid --pattern '{"legacy_log":{"service":"status"}}'
|
|
[legacy][status] M a: size changed (2 -> 0), os.stat size = 0
|
|
|
|
$ sleep 1
|
|
$ rm -rf .hg/blackbox*
|
|
$ echo 1 > a
|
|
$ hg status
|
|
$ hg blackbox --no-timestamp --no-sid --pattern '{"legacy_log":{"service":"status"}}'
|
|
[legacy][status] L a: mtime changed (* -> *) (glob)
|
|
[legacy][status] C a: checked in filesystem
|