sapling/eden/scm/tests/test-revert-status.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

50 lines
1.2 KiB
Perl

#chg-compatible
Quote from test-revert.t but this version is stronger - mtime was changed
manually.
> Test that files reverted to other than the parent are treated as
> "modified", even if none of mode, size and timestamp of it isn't
> changed on the filesystem (see also issue4583).
$ newrepo
$ drawdag <<EOS
> B # B/A=B
> | # A/A=A
> A
> EOS
$ hg up -q $B
Initially, dirstate does not have mtime set for files if the command was
executed quickly (mtime == fsnow at the end of the command).
# $ hg debugdirstate
# n 644 1 unset A
# n 644 1 unset B
Calling hg status would update mtimes in dirstate (unless mtime == now)
$ touch -t 200001010000 A B
$ hg status
$ hg debugdirstate
n 644 1 2000-01-01 00:00:00 A
n 644 1 2000-01-01 00:00:00 B
Revert "A" so its content will change. The size does not change and we set
mtime to make it unchanged.
$ hg revert -r $A A
$ touch -t 200001010000 A
dirstate mtime for "A" is changed to "unset"
$ hg debugdirstate
n 0 -1 unset A
n 644 1 2000-01-01 00:00:00 B
status can detect "A" is modified
$ hg status
M A