Skip to content
Snippets Groups Projects
Commit 07566f80 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

benchmark: add a progress variant to stream consumption

This match the change I am making into core.
parent 64cfba01
No related branches found
No related tags found
No related merge requests found
......@@ -31,3 +31,10 @@
[hg-perf-ext.variants.dimensions.progress.no]
default = true
args = [ "--no-unbundle-progress" ]
[hg-perf-ext.variants.dimensions.read-from-memory.yes]
args = [ "--in-memory-bundle" ]
[hg-perf-ext.variants.dimensions.read-from-memory.no]
default = true
args = [ "--no-in-memory-bundle" ]
......@@ -38,4 +38,11 @@
["no"] { args { "--no-unbundle-progress" } }
}
}
["read-from-memory"] {
default_key = "no"
cases {
["yes"] { args { "--in-memory-bundle" } }
["no"] { args { "--no-in-memory-bundle" } }
}
}
}
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