comparison tests/test-diff-copy-depth.t @ 12150:bca69641de61

tests: unify test-diff-copy-depth
author Adrian Buehlmann <adrian@cadifra.com>
date Thu, 02 Sep 2010 15:08:36 +0200
parents tests/test-diff-copy-depth@204a2ca249b6
children
comparison
equal deleted inserted replaced
12149:3213e56d63aa 12150:bca69641de61
1 $ for i in aaa zzz; do
2 > hg init t
3 > cd t
4 >
5 > echo
6 > echo "-- With $i"
7 >
8 > touch file
9 > hg add file
10 > hg ci -m "Add"
11 >
12 > hg cp file $i
13 > hg ci -m "a -> $i"
14 >
15 > hg cp $i other-file
16 > echo "different" >> $i
17 > hg ci -m "$i -> other-file"
18 >
19 > hg cp other-file somename
20 >
21 > echo "Status":
22 > hg st -C
23 > echo
24 > echo "Diff:"
25 > hg diff -g
26 >
27 > cd ..
28 > rm -rf t
29 > done
30
31 -- With aaa
32 Status:
33 A somename
34 other-file
35
36 Diff:
37 diff --git a/other-file b/somename
38 copy from other-file
39 copy to somename
40
41 -- With zzz
42 Status:
43 A somename
44 other-file
45
46 Diff:
47 diff --git a/other-file b/somename
48 copy from other-file
49 copy to somename
50
51