comparison tests/test-clone-failure @ 550:96ff7dae94f7

[PATCH] Tests for clone command -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 [PATCH] Tests for clone command From: Bryan O'Sullivan <bos@serpentine.com> This patch adds two new tests. One tests clone's correct operation, the other that clone fails when it should. This patch depends on oserror.patch. manifest hash: a0c9c4932baf29e7b33b2bd2003ddd2254ce65d3 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCxPX9ywK+sNU5EO8RAmSNAJ9esixtATdkszwLltu65dzpKf6P4gCcCqGT +Z7CTbXRTFcJvmXFlvEo0xE= =6fqz -----END PGP SIGNATURE-----
author mpm@selenic.com
date Thu, 30 Jun 2005 23:51:25 -0800
parents
children ec85f9e6f3b1 8f5637f0a0c0 0902ffece4b4
comparison
equal deleted inserted replaced
549:92b60cabf808 550:96ff7dae94f7
1 #!/bin/bash
2
3 set -x
4
5 # No local source
6 hg clone a b
7 echo $?
8
9 # No remote source
10 hg clone http://127.0.0.1:3121/a b
11 echo $?
12 rm -rf b # work around bug with http clone
13
14 # Inaccessible source
15 mkdir a
16 chmod 000 a
17 hg clone a b
18 echo $?
19
20 # Inaccessible destination
21 mkdir b
22 cd b
23 hg init
24 hg clone . ../a
25 echo $?
26 cd ..
27 chmod 700 a
28 rm -rf a b
29
30 # Source of wrong type
31 mkfifo a
32 hg clone a b
33 echo $?
34 rm a
35
36 # Default destination, same directory
37 mkdir q
38 cd q
39 hg init
40 cd ..
41 hg clone q
42
43 true