~bzr-pqm/bzr/bzr.dev

2052.3.2 by John Arbash Meinel
Change Copyright .. by Canonical to Copyright ... Canonical
1
# Copyright (C) 2006 Canonical Ltd
1752.1.2 by Aaron Bentley
Benchmark the rocks command
2
#
3
# This program is free software; you can redistribute it and/or modify
2052.3.1 by John Arbash Meinel
Add tests to cleanup the copyright of all source files
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
1752.1.2 by Aaron Bentley
Benchmark the rocks command
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
2063.1.1 by John Arbash Meinel
spin off startup benchmarks to their own branch
17
"""Benchmarks of bzr rocks."""
1752.1.2 by Aaron Bentley
Benchmark the rocks command
18
19
20
from bzrlib.benchmarks import Benchmark
21
22
23
class RocksBenchmark(Benchmark):
2399.1.7 by John Arbash Meinel
Cleanup bzrlib/benchmarks/* so that everything at least has a valid doc string.
24
    """Benchmarks for ``'bzr rocks'``"""
1752.1.2 by Aaron Bentley
Benchmark the rocks command
25
26
    def test_rocks(self):
27
        """Test the startup overhead by running a do-nothing command"""
1752.1.6 by Aaron Bentley
Rename run_bzr_external -> run_bzr_subprocess, add docstring
28
        self.time(self.run_bzr_subprocess, 'rocks')