~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/benchmarks/bench_add.py

  • Committer: John Arbash Meinel
  • Date: 2006-10-16 01:50:48 UTC
  • mfrom: (2078 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: john@arbash-meinel.com-20061016015048-0f22df07e38093da
[merge] bzr.dev 2078

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 by Canonical Ltd
 
1
# Copyright (C) 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License version 2 as published by
5
 
# the Free Software Foundation.
 
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.
6
7
#
7
8
# This program is distributed in the hope that it will be useful,
8
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
23
24
 
24
25
    def test_one_add_kernel_like_tree(self):
25
26
        """Adding a kernel sized tree should be bearable (<5secs) fast.""" 
26
 
        self.make_kernel_like_tree()
27
 
        # on roberts machine this originally took:  25936ms/32244ms
28
 
        # after making smart_add use the parent_ie:  5033ms/ 9368ms
 
27
        self.make_kernel_like_tree(link_working=True)
 
28
        # on roberts machine: this originally took:  25936ms/32244ms
 
29
        # after making smart_add use the parent_ie:   5033ms/ 9368ms
 
30
        # plain os.walk takes 213ms on this tree
29
31
        self.time(self.run_bzr, 'add')