author | Martin Geisler <mg@lazybytes.net> |
Mon, 03 Aug 2009 00:01:50 +0200 | |
changeset 9295 | b0f447a259ab |
parent 6489 | 204a2ca249b6 |
permissions | -rwxr-xr-x |
6489
204a2ca249b6
tests/test-diff-copy-depth: using sh instead of bash
Adrian Buehlmann <adrian@cadifra.com>
parents:
6424
diff
changeset
|
1 |
#!/bin/sh |
6424 | 2 |
|
3 |
for i in aaa zzz; do |
|
4 |
hg init t |
|
5 |
cd t |
|
6 |
||
7 |
echo "-- With $i" |
|
8 |
||
9 |
touch file |
|
10 |
hg add file |
|
11 |
hg ci -m "Add" |
|
12 |
||
13 |
hg cp file $i |
|
14 |
hg ci -m "a -> $i" |
|
15 |
||
16 |
hg cp $i other-file |
|
17 |
echo "different" >> $i |
|
18 |
hg ci -m "$i -> other-file" |
|
19 |
||
20 |
hg cp other-file somename |
|
21 |
||
22 |
echo "Status": |
|
23 |
hg st -C |
|
24 |
echo |
|
25 |
echo "Diff:" |
|
26 |
hg diff -g |
|
27 |
echo |
|
28 |
||
29 |
cd .. |
|
30 |
rm -rf t |
|
31 |
done |