comparison tests/test-clone.out @ 801:1f9ec150a476

Updated output of tests.
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 29 Jul 2005 15:21:02 +0100
parents 7e4843b7efd2
children 8f5637f0a0c0
comparison
equal deleted inserted replaced
800:ec85f9e6f3b1 801:1f9ec150a476
1 + mkdir a
2 + cd a
3 + hg init 1 + hg init
4 + echo a
5 + hg add a 2 + hg add a
6 + hg commit -m test -d '0 0' 3 + hg commit -m test -d 0 0
7 + hg clone . ../b 4 + hg clone . ../b
8 + cd ../b
9 + cat a
10 a 5 a
11 + hg verify 6 + hg verify
12 checking changesets 7 checking changesets
13 checking manifests 8 checking manifests
14 crosschecking files in changesets and manifests 9 crosschecking files in changesets and manifests
15 checking files 10 checking files
16 1 files, 1 changesets, 1 total revisions 11 1 files, 1 changesets, 1 total revisions
17 + hg clone -U . ../c 12 + hg clone -U . ../c
18 + cd ../c
19 + cat a
20 cat: a: No such file or directory 13 cat: a: No such file or directory
21 + hg verify 14 + hg verify
22 checking changesets 15 checking changesets
23 checking manifests 16 checking manifests
24 crosschecking files in changesets and manifests 17 crosschecking files in changesets and manifests
25 checking files 18 checking files
26 1 files, 1 changesets, 1 total revisions 19 1 files, 1 changesets, 1 total revisions
27 + mkdir ../d
28 + cd ../d
29 + hg clone ../a 20 + hg clone ../a
30 + cd a
31 + hg cat a 21 + hg cat a
32 a 22 a