##// END OF EJS Templates
Extended test case to test dirstate length bug fixed in a7e95e3606c7.
Thomas Arendsen Hein -
r864:6225bd77 default
parent child Browse files
Show More
@@ -4,6 +4,7 b' mkdir t'
4 4 cd t
5 5 hg init
6 6 echo "added file1" > file1
7 echo "another line of text" >> file1
7 8 echo "added file2" > file2
8 9 hg add file1 file2
9 10 hg commit -m "added file1 and file2" -d "0 0" -u user
@@ -3,36 +3,37 b''
3 3 + hg commit -m added file1 and file2 -d 0 0 -u user
4 4 + hg commit -m changed file1 -d 0 0 -u user
5 5 + hg -q log
6 1:3aa14bbc23d90e3f8b5b639b4a43d76509bae76c
7 0:8633637036c18f021d771208e16ae3508ab81d28
6 1:f4d7a8c73d231bc078e2a5e791325e55e8a4c252
7 0:232e179b3f294d467cfa66e1439bc5b0d44e4a93
8 8 + hg id
9 3aa14bbc23d9 tip
9 f4d7a8c73d23 tip
10 10 + hg update -C 0
11 11 + hg id
12 8633637036c1
12 232e179b3f29
13 13 + hg id
14 8633637036c1+
14 232e179b3f29+
15 15 + hg revert
16 16 + hg diff
17 17 + hg status
18 18 + hg id
19 8633637036c1
19 232e179b3f29
20 20 + hg update
21 21 + hg diff
22 22 + hg status
23 23 + hg id
24 3aa14bbc23d9 tip
24 f4d7a8c73d23 tip
25 25 + hg update -C 0
26 26 + hg update
27 27 merge: warning: conflicts during merge
28 28 merging file1
29 29 merging file1 failed!
30 30 + hg diff
31 diff -r 3aa14bbc23d9 file1
31 diff -r f4d7a8c73d23 file1
32 32 --- a/file1
33 33 +++ b/file1
34 @@ -1,2 +1,6 @@
34 @@ -1,3 +1,7 @@
35 35 added file1
36 another line of text
36 37 +<<<<<<<
37 38 +changed file1 different
38 39 +=======
@@ -41,19 +42,19 b' diff -r 3aa14bbc23d9 file1'
41 42 + hg status
42 43 M file1
43 44 + hg id
44 3aa14bbc23d9+ tip
45 f4d7a8c73d23+ tip
45 46 + hg revert
46 47 + hg diff
47 48 + hg status
48 49 + hg id
49 3aa14bbc23d9 tip
50 f4d7a8c73d23 tip
50 51 + hg revert -r tip
51 52 + hg diff
52 53 + hg status
53 54 + hg id
54 3aa14bbc23d9 tip
55 f4d7a8c73d23 tip
55 56 + hg update -C
56 57 + hg diff
57 58 + hg status
58 59 + hg id
59 3aa14bbc23d9 tip
60 f4d7a8c73d23 tip
General Comments 0
You need to be logged in to leave comments. Login now