##// END OF EJS Templates
tests: combine test-dirstate-future.t...
Adrian Buehlmann -
r11888:2bd69988 default
parent child Browse files
Show More
@@ -1,4 +1,4 b''
1 Test dirstate._dirs refcounting:
1 ------ Test dirstate._dirs refcounting
2
2
3 $ hg init t
3 $ hg init t
4 $ cd t
4 $ cd t
@@ -14,4 +14,27 b' Test dirstate._dirs refcounting:'
14 moving a/b/c/d/x to z/b/c/d/x
14 moving a/b/c/d/x to z/b/c/d/x
15 moving a/b/c/d/y to z/b/c/d/y
15 moving a/b/c/d/y to z/b/c/d/y
16 moving a/b/c/d/z to z/b/c/d/z
16 moving a/b/c/d/z to z/b/c/d/z
17 $ cd ..
17
18
19 ------ issue1790
20
21 Prepare test repo:
22
23 $ hg init u
24 $ cd u
25 $ echo a > a
26 $ hg add
27 adding a
28 $ hg ci -m1
29
30 Set mtime of a into the future:
31
32 $ touch -t 202101011200 a
33
34 Status must not set a's entry to unset (issue1790):
35
36 $ hg status
37 $ hg debugstate
38 n 644 2 2021-01-01 12:00:00 a
39 $ cd ..
40
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now