~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Martin Pool
  • Date: 2009-08-28 05:00:33 UTC
  • mfrom: (4659 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4660.
  • Revision ID: mbp@sourcefrog.net-20090828050033-blwvnig3gdzbr1iw
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
3382
3382
                     Option('lsprof-timed',
3383
3383
                            help='Generate lsprof output for benchmarked'
3384
3384
                                 ' sections of code.'),
 
3385
                     Option('lsprof-tests',
 
3386
                            help='Generate lsprof output for each test.'),
3385
3387
                     Option('cache-dir', type=str,
3386
3388
                            help='Cache intermediate benchmark output in this '
3387
3389
                                 'directory.'),
3428
3430
            first=False, list_only=False,
3429
3431
            randomize=None, exclude=None, strict=False,
3430
3432
            load_list=None, debugflag=None, starting_with=None, subunit=False,
3431
 
            parallel=None):
 
3433
            parallel=None, lsprof_tests=False):
3432
3434
        from bzrlib.tests import selftest
3433
3435
        import bzrlib.benchmarks as benchmarks
3434
3436
        from bzrlib.benchmarks import tree_creator
3468
3470
                              "transport": transport,
3469
3471
                              "test_suite_factory": test_suite_factory,
3470
3472
                              "lsprof_timed": lsprof_timed,
 
3473
                              "lsprof_tests": lsprof_tests,
3471
3474
                              "bench_history": benchfile,
3472
3475
                              "matching_tests_first": first,
3473
3476
                              "list_only": list_only,