~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-02 07:48:20 UTC
  • mfrom: (2830.2.12 test-traceback)
  • Revision ID: pqm@pqm.ubuntu.com-20071002074820-0o6n138uq5uh7snb
If an internal error happens in a test, don't turn it into a return code plus traceback but rather let it run up and be seen as a test error (mbp)

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
  NOTES WHEN UPGRADING:
11
11
 
 
12
  CHANGES:
 
13
  
 
14
   * ``bzr`` now returns exit code 4 if an internal error occurred, and 
 
15
     3 if a normal error occurred.  (Martin Pool)
 
16
 
12
17
   * ``pull``, ``merge`` and ``push`` will no longer silently correct some
13
18
     repository index errors that occured as a result of the Weave disk format.
14
19
     Instead the ``reconcile`` command needs to be run to correct those
115
120
     enable_cache() has been called - the caching feature is now exclusively for
116
121
     reading existing data. (Robert Collins)
117
122
 
 
123
   * Removed previously deprecated varargs interface to ``TestCase.run_bzr`` and
 
124
     deprecated methods ``TestCase.capture`` and ``TestCase.run_bzr_captured``.
 
125
     (Martin Pool)
 
126
 
 
127
   * Special purpose method ``TestCase.run_bzr_decode`` is moved to the test_non_ascii 
 
128
     class that needs it.
 
129
     (Martin Pool)
 
130
 
118
131
   * The ``VersionedFile`` interface now allows content checks to be bypassed
119
132
     by supplying check_content=False.  This saves nearly 30% of the minimum
120
133
     cost to store a version of a file. (Robert Collins)
161
174
 
162
175
  TESTING:
163
176
 
 
177
   * When running bzr commands within the test suite, internal exceptions are
 
178
     not caught and reported in the usual way, but rather allowed to propagate
 
179
     up and be visible to the test suite.  A new API ``run_bzr_catch_user_errors``
 
180
     makes this behavior available to other users.
 
181
     (Martin Pool)
 
182
 
164
183
 
165
184
bzr 0.91rc2 2007-09-11
166
185
======================