~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-08-30 07:47:38 UTC
  • mfrom: (5394.2.1 integration2)
  • Revision ID: pqm@pqm.ubuntu.com-20100830074738-ymqwum541fi8b4sr
(vila) Fix most of the leaking tests (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3570
3570
            randomize=None, exclude=None, strict=False,
3571
3571
            load_list=None, debugflag=None, starting_with=None, subunit=False,
3572
3572
            parallel=None, lsprof_tests=False):
3573
 
        from bzrlib.tests import selftest
 
3573
        from bzrlib import tests
3574
3574
 
3575
3575
        # Make deprecation warnings visible, unless -Werror is set
3576
3576
        symbol_versioning.activate_deprecation_warnings(override=False)
3620
3620
                          "starting_with": starting_with
3621
3621
                          }
3622
3622
        selftest_kwargs.update(self.additional_selftest_args)
3623
 
        result = selftest(**selftest_kwargs)
 
3623
        result = tests.selftest(**selftest_kwargs)
3624
3624
        return int(not result)
3625
3625
 
3626
3626