~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_trace.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-01-21 17:54:58 UTC
  • mfrom: (4948.5.7 ignore-exclusion)
  • Revision ID: pqm@pqm.ubuntu.com-20100121175458-17l0cvckbrf93eea
(John Whitley) implement ! and !! to exclude files from ignore rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
253
253
        # If _open_bzr_log cannot open the file, then we should write the
254
254
        # warning to stderr. Since this is normally happening before logging is
255
255
        # set up.
256
 
        self.overrideAttr(sys, 'stderr', StringIO())
 
256
        self.addCleanup(setattr, sys, 'stderr', sys.stderr)
 
257
        self.addCleanup(setattr, trace, '_bzr_log_filename',
 
258
                        trace._bzr_log_filename)
 
259
        sys.stderr = StringIO()
257
260
        # Set the log file to something that cannot exist
258
 
        # FIXME: A bit dangerous: we are not in an isolated dir here -- vilajam
259
 
        # 20100125
260
261
        os.environ['BZR_LOG'] = os.getcwd() + '/no-dir/bzr.log'
261
 
        self.overrideAttr(trace, '_bzr_log_filename')
262
262
        logf = trace._open_bzr_log()
263
263
        self.assertIs(None, logf)
264
264
        self.assertContainsRe(sys.stderr.getvalue(),
265
265
                              'failed to open trace file: .*/no-dir/bzr.log')
266
266
 
267
 
 
268
267
class TestVerbosityLevel(TestCase):
269
268
 
270
269
    def test_verbosity_level(self):