comparison tests/test-clone.out @ 642:5d6177b72fcc

Update tests
author Matt Mackall <mpm@selenic.com>
date Wed, 06 Jul 2005 22:27:25 -0800
parents 96ff7dae94f7
children 32f7dc81c07e
comparison
equal deleted inserted replaced
641:27f53edc02b9 642:5d6177b72fcc
3 + hg init 3 + hg init
4 + echo a 4 + echo a
5 + hg add a 5 + hg add a
6 + hg commit -t test -u test -d '0 0' 6 + hg commit -t test -u test -d '0 0'
7 + hg clone . ../b 7 + hg clone . ../b
8 cloning by hardlink
8 + cd ../b 9 + cd ../b
9 + cat a 10 + cat a
10 a 11 a
11 + hg verify 12 + hg verify
12 checking changesets 13 checking changesets
13 checking manifests 14 checking manifests
14 crosschecking files in changesets and manifests 15 crosschecking files in changesets and manifests
15 checking files 16 checking files
16 1 files, 1 changesets, 1 total revisions 17 1 files, 1 changesets, 1 total revisions
17 + hg clone -U . ../c 18 + hg clone -U . ../c
19 cloning by hardlink
18 + cd ../c 20 + cd ../c
19 + cat a 21 + cat a
20 cat: a: No such file or directory 22 cat: a: No such file or directory
21 + hg verify 23 + hg verify
22 checking changesets 24 checking changesets
25 checking files 27 checking files
26 1 files, 1 changesets, 1 total revisions 28 1 files, 1 changesets, 1 total revisions
27 + mkdir ../d 29 + mkdir ../d
28 + cd ../d 30 + cd ../d
29 + hg clone ../a 31 + hg clone ../a
32 cloning by hardlink
30 + cd a 33 + cd a
31 + hg cat a 34 + hg cat a
32 a 35 a