Mercurial > hg
annotate tests/test-pull-permission.t @ 13474:6c2e476b7a11 stable
tests: check if the bookmarks extension is ignored
author | David Soria Parra <dsp@php.net> |
---|---|
date | Thu, 24 Feb 2011 19:15:00 +0100 |
parents | 28e2e3804f2e |
children | ffb5c09ba822 |
rev | line source |
---|---|
12279 | 1 $ mkdir a |
2 $ cd a | |
3 $ hg init | |
4 $ echo foo > b | |
5 $ hg add b | |
6 $ hg ci -m "b" | |
1244
937ee88da3ef
clone: fall back to pull if we can't lock the source repo
mpm@selenic.com
parents:
diff
changeset
|
7 |
12279 | 8 $ chmod -w .hg/store |
9 | |
10 $ cd .. | |
1244
937ee88da3ef
clone: fall back to pull if we can't lock the source repo
mpm@selenic.com
parents:
diff
changeset
|
11 |
12279 | 12 $ hg clone a b |
13 requesting all changes | |
14 adding changesets | |
15 adding manifests | |
16 adding file changes | |
17 added 1 changesets with 1 changes to 1 files | |
18 updating to branch default | |
19 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
1244
937ee88da3ef
clone: fall back to pull if we can't lock the source repo
mpm@selenic.com
parents:
diff
changeset
|
20 |
12279 | 21 $ chmod +w a/.hg/store # let test clean up |
1750
955a7caf005c
make test-pull-permission cleanup correctly in case of errors
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
1244
diff
changeset
|
22 |
12279 | 23 $ cd b |
24 $ hg verify | |
25 checking changesets | |
26 checking manifests | |
27 crosschecking files in changesets and manifests | |
28 checking files | |
29 1 files, 1 changesets, 1 total revisions | |
1750
955a7caf005c
make test-pull-permission cleanup correctly in case of errors
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
1244
diff
changeset
|
30 |