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

benchmark: use ';' instead of ":" as format separator

The previous format was wrong according to `hg help bundlespec` (and the
crashing CLI).

We also wrap some line for readability to avoid making the file less absurdly wide.
parent ecce5757
No related branches found
No related tags found
No related merge requests found
Pipeline #101863 failed
......@@ -13,6 +13,9 @@
[hg-perf-ext.variants.dimensions.version.v2]
default = true
setup-script = "hg bundle --all --type \"none-v2:stream=v2\" ../tmp-bundle.hg"
setup-script = """
hg bundle --all \\
--type \"none-v2;stream=v2\" \\
../tmp-bundle.hg"""
[hg-perf-ext.variants.dimensions.version.v3]
......@@ -17,3 +20,7 @@
[hg-perf-ext.variants.dimensions.version.v3]
setup-script = "hg bundle --all --type \"none-v2:stream=v3-exp\" ../tmp-bundle.hg --config experimental.stream-v3=yes"
setup-script = """
hg bundle --all \\
--type \"none-v2;stream=v3-exp\"
--config experimental.stream-v3=yes
../tmp-bundle.hg"""
......@@ -15,8 +15,10 @@
default_key = "v2"
cases {
["v2"] {
setup_script = """
hg bundle --all --type "none-v2:stream=v2" ../tmp-bundle.hg
"""
setup_script = #"""
hg bundle --all \
--type "none-v2;stream=v2" \
../tmp-bundle.hg
"""#
}
["v3"] {
......@@ -21,8 +23,11 @@
}
["v3"] {
setup_script = """
hg bundle --all --type "none-v2:stream=v3-exp" ../tmp-bundle.hg --config experimental.stream-v3=yes
"""
setup_script = #"""
hg bundle --all \
--type "none-v2;stream=v3-exp"
--config experimental.stream-v3=yes
../tmp-bundle.hg
"""#
}
}
}
......
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