~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_upgrade.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
            ['upgrade', '--format=metaweave', url])
110
110
        self.assertEqualDiff("""starting upgrade of %s
111
111
making backup of tree history
112
 
%s.bzr has been backed up to %sbackup.bzr
 
112
%s.bzr has been backed up to %s.bzr.backup
113
113
if conversion fails, you can move this directory back to .bzr
114
114
if it succeeds, you can remove this directory if you wish
115
115
starting upgrade from format 5 to 6
133
133
            ['upgrade', '--format=knit', url])
134
134
        self.assertEqualDiff("""starting upgrade of %s
135
135
making backup of tree history
136
 
%s.bzr has been backed up to %sbackup.bzr
 
136
%s.bzr has been backed up to %s.bzr.backup
137
137
if conversion fails, you can move this directory back to .bzr
138
138
if it succeeds, you can remove this directory if you wish
139
139
starting repository conversion
172
172
        out, err = self.run_bzr(['upgrade', '--format=knit', url])
173
173
        self.assertEqualDiff("""starting upgrade of %s
174
174
making backup of tree history
175
 
%s.bzr has been backed up to %sbackup.bzr
 
175
%s.bzr has been backed up to %s.bzr.backup
176
176
if conversion fails, you can move this directory back to .bzr
177
177
if it succeeds, you can remove this directory if you wish
178
178
starting upgrade from format 6 to metadir
196
196
        # the actual workingtree, not when we only open a bzrdir that contains
197
197
        # an old workngtree
198
198
        self.run_bzr('init --knit a')
199
 
        out, err = self.run_bzr('revno a')
 
199
        out, err = self.run_bzr('checkout a b')
200
200
        if err.find('upgrade') > -1:
201
201
            self.fail("message shouldn't suggest upgrade:\n%s" % err)