~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: 2007-08-15 03:51:59 UTC
  • mfrom: (2687.3.1 test-show-version)
  • Revision ID: pqm@pqm.ubuntu.com-20070815035159-9hn3rewqcmibgvwq
Reduce the size of the selftest output header

Show diffs side-by-side

added added

removed removed

Lines of Context:
2529
2529
        if cache_dir is not None:
2530
2530
            tree_creator.TreeCreator.CACHE_ROOT = osutils.abspath(cache_dir)
2531
2531
        if not list_only:
2532
 
            show_version(show_config=False, show_copyright=False)
 
2532
            print 'testing: %s' % (osutils.realpath(sys.argv[0]),)
 
2533
            print '   %s (%s python%s)' % (
 
2534
                    bzrlib.__path__[0],
 
2535
                    bzrlib.version_string,
 
2536
                    '.'.join(map(str, sys.version_info)),
 
2537
                    )
2533
2538
        print
2534
2539
        if testspecs_list is not None:
2535
2540
            pattern = '|'.join(testspecs_list)