~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_trace.py

  • Committer: Vincent Ladeuil
  • Date: 2010-10-15 12:35:00 UTC
  • mto: This revision was merged to the branch mainline in revision 5502.
  • Revision ID: v.ladeuil+lp@free.fr-20101015123500-iyqj7e0r62ie6qfy
Unbreak pqm by commenting out the bogus use of doctest +SKIP not supported by python2.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2011 Canonical Ltd
 
1
# Copyright (C) 2005-2010 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
301
301
        # set up.
302
302
        self.overrideAttr(sys, 'stderr', StringIO())
303
303
        # Set the log file to something that cannot exist
304
 
        self.overrideEnv('BZR_LOG', os.getcwd() + '/no-dir/bzr.log')
 
304
        # FIXME: A bit dangerous: we are not in an isolated dir here -- vilajam
 
305
        # 20100125
 
306
        os.environ['BZR_LOG'] = os.getcwd() + '/no-dir/bzr.log'
305
307
        self.overrideAttr(trace, '_bzr_log_filename')
306
308
        logf = trace._open_bzr_log()
307
309
        self.assertIs(None, logf)