~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testbzr

  • Committer: Martin Pool
  • Date: 2005-06-06 05:13:21 UTC
  • Revision ID: mbp@sourcefrog.net-20050606051321-096739d92aa50664
- make sure bzr is always explicitly invoked through 
  python in case it's not executable

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
TESTDIR = "testbzr.tmp"
48
48
 
49
 
OVERRIDE_PYTHON = None
 
49
 
 
50
# we always invoke bzr as 'python bzr' (or e.g. 'python2.3 bzr')
 
51
# partly so as to cope if the bzr binary is not marked executable
 
52
OVERRIDE_PYTHON = 'python'
50
53
 
51
54
LOGFILENAME = 'testbzr.log'
52
55
 
166
169
    print '%-30s %s' % ('in directory', os.getcwd())
167
170
    print '%-30s %s' % ('with python', (OVERRIDE_PYTHON or '(default)'))
168
171
    print
169
 
    print backtick([BZRPATH, 'version'])
 
172
    print backtick('bzr version')
170
173
    
171
174
    runcmd(['mkdir', TESTDIR])
172
175
    cd(TESTDIR)