##// END OF EJS Templates
merge with crew-stable
merge with crew-stable

File last commit:

r9378:1a7bcf58 default
r9379:9d2e3508 merge default
Show More
test-dirstate-future
13 lines | 183 B | text/plain | TextLexer
/ tests / test-dirstate-future
Adrian Buehlmann
dirstate.write: don't ignore stat data if mtime is in the future (issue1790)...
r9378 #!/bin/sh
hg init
echo a > a
hg add
hg ci -m1
# set mtime of a into the future
touch -t 202101011200 a
# status must not set a's entry to unset (issue1790)
hg status
hg debugstate