~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/en/debug-flags.txt

  • Committer: Vincent Ladeuil
  • Date: 2009-12-14 15:51:36 UTC
  • mto: (4894.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4895.
  • Revision ID: v.ladeuil+lp@free.fr-20091214155136-rf4nkqvxda9oiw4u
Cleanup tests and tweak the text displayed.

* bzrlib/tests/blackbox/test_update.py:
Fix imports and replace the assertContainsRe with assertEqualDiff
to make the test clearer, more robust and easier to debug.

* bzrlib/tests/commands/test_update.py: 
Fix imports.

* bzrlib/tests/blackbox/test_filtered_view_ops.py: 
Fix imports and strange accesses to base class methods.
(TestViewTreeOperations.test_view_on_update): Avoid os.chdir()
call, simplify string matching assertions.

* bzrlib/builtins.py:
(cmd_update.run): Fix spurious space, get rid of the final '/' for
the base path, don't add a final period (it's a legal char in a
path and would be annoying for people that like to copy/paste).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Debug Flags
 
2
===========
 
3
 
 
4
These flags can be passed on the bzr command line or (without the ``-D``
 
5
prefix) put in the ``debug_flags`` variable in ``bazaar.conf``.
 
6
 
 
7
-Dauth            Trace authentication sections used.
 
8
-Ddirstate        Trace dirstate activity (verbose!)
 
9
-Derror           Instead of normal error handling, always print a traceback
 
10
                  on error.
 
11
-Devil            Capture call sites that do expensive or badly-scaling
 
12
                  operations.
 
13
-Dfetch           Trace history copying between repositories.
 
14
-Dfilters         Emit information for debugging content filtering.
 
15
-Dforceinvdeltas  Force use of inventory deltas during generic streaming fetch.
 
16
-Dgraph           Trace graph traversal.
 
17
-Dhashcache       Log every time a working file is read to determine its hash.
 
18
-Dhooks           Trace hook execution.
 
19
-Dhpss            Trace smart protocol requests and responses.
 
20
-Dhpssdetail      More hpss details.
 
21
-Dhpssvfs         Traceback on vfs access to Remote objects.
 
22
-Dhttp            Trace http connections, requests and responses.
 
23
-Dindex           Trace major index operations.
 
24
-Dknit            Trace knit operations.
 
25
-Dlock            Trace when lockdir locks are taken or released.
 
26
-Dprogress        Trace progress bar operations.
 
27
-Dmerge           Emit information for debugging merges.
 
28
-Dno_apport       Don't use apport to report crashes.
 
29
-Dpack            Emit information about pack operations.
 
30
-Drelock          Emit a message every time a branch or repository object is
 
31
                  unlocked then relocked the same way.
 
32
-Dsftp            Trace SFTP internals.
 
33
-Dstatic_tuple    Error when a tuple is used where a StaticTuple is expected
 
34
-Dstream          Trace fetch streams.
 
35
-Dstrict_locks    Trace when OS locks are potentially used in a non-portable
 
36
                  manner.
 
37
-Dunlock          Some errors during unlock are treated as warnings.
 
38
-DIDS_never       Never use InterDifferingSerializer when fetching.
 
39
-DIDS_always      Always use InterDifferingSerializer to fetch if appropriate
 
40
                  for the format, even for non-local fetches.