comparison tests/test-clone.out @ 676:32f7dc81c07e

Remove references to 'cloning by hardlink' from tests. # HG changeset patch # User Andrew Thompson <andrewkt@aktzero.com> # Node ID c12a49438454e9782ff7eb9b11841e7b9406fbab # Parent b3bba126b04ab2f24274a1bcf5a224c6317c8e0d Remove references to 'cloning by hardlink' from tests.
author Andrew Thompson <andrewkt@aktzero.com>
date Sun, 10 Jul 2005 16:17:05 -0800
parents 5d6177b72fcc
children 7e4843b7efd2
comparison
equal deleted inserted replaced
675:49de76abc4da 676:32f7dc81c07e
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
9 + cd ../b 8 + cd ../b
10 + cat a 9 + cat a
11 a 10 a
12 + hg verify 11 + hg verify
13 checking changesets 12 checking changesets
14 checking manifests 13 checking manifests
15 crosschecking files in changesets and manifests 14 crosschecking files in changesets and manifests
16 checking files 15 checking files
17 1 files, 1 changesets, 1 total revisions 16 1 files, 1 changesets, 1 total revisions
18 + hg clone -U . ../c 17 + hg clone -U . ../c
19 cloning by hardlink
20 + cd ../c 18 + cd ../c
21 + cat a 19 + cat a
22 cat: a: No such file or directory 20 cat: a: No such file or directory
23 + hg verify 21 + hg verify
24 checking changesets 22 checking changesets
27 checking files 25 checking files
28 1 files, 1 changesets, 1 total revisions 26 1 files, 1 changesets, 1 total revisions
29 + mkdir ../d 27 + mkdir ../d
30 + cd ../d 28 + cd ../d
31 + hg clone ../a 29 + hg clone ../a
32 cloning by hardlink
33 + cd a 30 + cd a
34 + hg cat a 31 + hg cat a
35 a 32 a