~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testbzr

  • Committer: Martin Pool
  • Date: 2005-05-09 06:09:42 UTC
  • Revision ID: mbp@sourcefrog.net-20050509060942-d9c9efd7feed0894
- more indicators at top of test output
- tidy up remotebranch stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
 
125
125
try:
126
126
    mypath = os.path.abspath(sys.argv[0])
127
 
    print 'running tests from', mypath
 
127
    print '%-30s %s' % ('running tests from', mypath)
128
128
 
129
129
    global BZRPATH
130
130
 
133
133
    else:
134
134
        BZRPATH = os.path.join(os.path.split(mypath)[0], 'bzr')
135
135
 
136
 
    print 'against bzr', BZRPATH
 
136
    print '%-30s %s' % ('against bzr', BZRPATH)
 
137
    print '%-30s %s' % ('in directory', os.getcwd())
137
138
    print
138
139
    print backtick([BZRPATH, 'version'])
139
140