Mercurial > hg
annotate tests/test-gendoc.t @ 15792:7cbba3adabc7
largefiles: implement addremove (issue3064)
Implementing addremove correctly in largefiles is tricky, becuase the original
addremove function does not call into any of the add or remove function we've
already overridden in the extension. So the trick is to implement addremove
without duplicating any code.
This patch implements addremove by pulling out the interesting parts of
override_add() and override_remove() into generic utility functions, and
using those to handle the largefiles in addremove. Then a matcher is
installed that will ignore all largefiles, and the original addremove
function is called to take care of the regular files in addremove.
A small bit of monkey patching is used to make sure that remove_largefiles()
notifies the user when a file is removed by addremove and also makes sure
the removal of largefiles doesn't interfer with the original addremove's
operation of removing the standin.
author | Na'Tosha Bard <natosha@unity3d.com> |
---|---|
date | Sat, 07 Jan 2012 12:42:54 +0100 |
parents | ac9a89dbdc00 |
children | 4f795f5fbb0b |
rev | line source |
---|---|
12427 | 1 Test document extraction |
9446
57d682d7d2da
test-gendoc: test documentation generation
Martin Geisler <mg@lazybytes.net>
parents:
diff
changeset
|
2 |
12427 | 3 $ "$TESTDIR/hghave" docutils || exit 80 |
4 $ HGENCODING=UTF-8 | |
5 $ export HGENCODING | |
6 $ for PO in C $TESTDIR/../i18n/*.po; do | |
7 > LOCALE=`basename $PO .po` | |
8 > echo | |
9 > echo "% extracting documentation from $LOCALE" | |
10 > echo ".. -*- coding: utf-8 -*-" > gendoc-$LOCALE.txt | |
11 > echo "" >> gendoc-$LOCALE.txt | |
12 > LC_ALL=$LOCALE python $TESTDIR/../doc/gendoc.py >> gendoc-$LOCALE.txt 2> /dev/null || exit | |
13 > | |
14 > # We call runrst without adding "--halt warning" to make it report | |
15 > # all errors instead of stopping on the first one. | |
16 > echo "checking for parse errors" | |
17 > python $TESTDIR/../doc/runrst html gendoc-$LOCALE.txt /dev/null | |
18 > done | |
19 | |
20 % extracting documentation from C | |
21 checking for parse errors | |
22 | |
23 % extracting documentation from da | |
24 checking for parse errors | |
25 | |
26 % extracting documentation from de | |
27 checking for parse errors | |
28 | |
29 % extracting documentation from el | |
30 checking for parse errors | |
31 | |
32 % extracting documentation from fr | |
33 checking for parse errors | |
34 | |
35 % extracting documentation from it | |
36 checking for parse errors | |
37 | |
38 % extracting documentation from ja | |
39 checking for parse errors | |
40 | |
41 % extracting documentation from pt_BR | |
42 checking for parse errors | |
43 | |
44 % extracting documentation from ro | |
45 checking for parse errors | |
46 | |
14475
ac9a89dbdc00
test-gendoc: update for new Russian translation
Martin Geisler <mg@lazybytes.net>
parents:
12427
diff
changeset
|
47 % extracting documentation from ru |
ac9a89dbdc00
test-gendoc: update for new Russian translation
Martin Geisler <mg@lazybytes.net>
parents:
12427
diff
changeset
|
48 checking for parse errors |
ac9a89dbdc00
test-gendoc: update for new Russian translation
Martin Geisler <mg@lazybytes.net>
parents:
12427
diff
changeset
|
49 |
12427 | 50 % extracting documentation from sv |
51 checking for parse errors | |
52 | |
53 % extracting documentation from zh_CN | |
54 checking for parse errors | |
55 | |
56 % extracting documentation from zh_TW | |
57 checking for parse errors |