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

Updated output of tests.
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 29 Jul 2005 15:21:02 +0100
parents 445970ccf57a
children 8f5637f0a0c0
comparison
equal deleted inserted replaced
800:ec85f9e6f3b1 801:1f9ec150a476
1 + hg clone a b 1 + hg clone a b
2 abort: repository a/.hg not found! 2 abort: repository a/.hg not found!
3 + echo 255
4 255 3 255
5 + hg clone http://127.0.0.1:3121/a b 4 + hg clone http://127.0.0.1:3121/a b
6 requesting all changes 5 requesting all changes
7 abort: error: Connection refused 6 abort: error: Connection refused
8 + echo 255
9 255 7 255
10 + rm -rf b
11 + mkdir a
12 + chmod 000 a
13 + hg clone a b 8 + hg clone a b
14 abort: repository a/.hg not found! 9 abort: repository a/.hg not found!
15 + echo 255
16 255 10 255
17 + mkdir b
18 + cd b
19 + hg init 11 + hg init
20 + hg clone . ../a 12 + hg clone . ../a
21 abort: destination '../a' already exists 13 abort: destination '../a' already exists
22 + echo 1
23 1 14 1
24 + cd ..
25 + chmod 700 a
26 + rm -rf a b
27 + mkfifo a
28 + hg clone a b 15 + hg clone a b
29 abort: repository a/.hg not found! 16 abort: repository a/.hg not found!
30 + echo 255
31 255 17 255
32 + rm a
33 + mkdir q
34 + cd q
35 + hg init 18 + hg init
36 + cd ..
37 + hg clone q 19 + hg clone q
38 abort: destination 'q' already exists 20 abort: destination 'q' already exists
39 + true