Mercurial > hg
annotate tests/test-clone @ 1951:696230e52e4d
add HGRCPATH env var, list of places to look for hgrc files.
if set, override default hgrc search path.
if empty, only .hg/hgrc of current repo read.
for each element, if directory, all entries in directory with end in
".rc" are added to path. else, element is added to path.
big thing about this change is that user "~/.hgrc" and system hgrc not
longer breaks tests. run-tests makes HGRCPATH empty now.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Tue, 14 Mar 2006 21:40:46 -0800 |
parents | ba198d17eea9 |
children | 76c4cadb49fc |
rev | line source |
---|---|
834
78a9f95766dc
Use sh instead of bash in tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
814
diff
changeset
|
1 #!/bin/sh |
550 | 2 |
3 mkdir a | |
4 cd a | |
5 hg init | |
6 echo a > a | |
7 hg add a | |
749
7e4843b7efd2
Update tests to use commit -m and default -u
mpm@selenic.com
parents:
550
diff
changeset
|
8 hg commit -m test -d '0 0' |
550 | 9 |
10 # Default operation | |
11 hg clone . ../b | |
12 cd ../b | |
13 cat a | |
14 hg verify | |
15 | |
16 # No update | |
17 hg clone -U . ../c | |
18 cd ../c | |
1926
ba198d17eea9
changes by John Levon to standardize some erroroutput
Peter van Dijk <peter@dataloss.nl>
parents:
839
diff
changeset
|
19 cat a 2>/dev/null || echo "a not present" |
550 | 20 hg verify |
21 | |
22 # Default destination | |
23 mkdir ../d | |
24 cd ../d | |
25 hg clone ../a | |
26 cd a | |
27 hg cat a |