tests/test-clone-failure.out
changeset 808 8f5637f0a0c0
parent 775 122449dd89db
parent 801 1f9ec150a476
child 814 0902ffece4b4
equal deleted inserted replaced
788:64d2a558c943 808:8f5637f0a0c0
     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