Skip to content
Snippets Groups Projects
Commit 1413a71a9b03 authored by Philippe Pepiot's avatar Philippe Pepiot
Browse files

Add pull benchmarks

parent d0c320751e22
No related branches found
No related tags found
No related merge requests found
......@@ -198,6 +198,13 @@
cmd.extend(['-r', self.rev])
self._single_execute(cmd, expected_return_code=1 if strip == "same" else 0)
def time_pull(self, repo_name, strip, revset):
cmd = [self.hgpath, '--cwd', self.tmp_clone_path, 'pull',
self.repo_path]
if self.rev:
cmd.extend(['-r', self.rev])
self._single_execute(cmd, expected_return_code=1 if strip == "same" else 0)
# class CloneTrackSuite(BaseTrackTestSuite):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment