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

hg-perf-ext: add a new `compatible-revision-range` constraints

This will be useful to avoid running benchmark with incompatible revision.
parent 617cfa82
No related branches found
No related tags found
No related merge requests found
......@@ -156,6 +156,10 @@
Target repository must have at least that many visible revision for this
benchmark to run.
- `compatible-revision-range=<revset>`:
The range of revision compatible with this changes.
variants
--------
......
......@@ -31,6 +31,14 @@
else:
core['graph']['visible-revision-count'] = min(new_revs, core_revs)
core_range = core.get('compatible-revision-range')
new_range = new.get('compatible-revision-range')
if new_range is not None:
if core_range is None:
core['compatible-revision-range'] = new_range
else:
rev_range = f"({core_range}) and ({new_range})"
core['compatible-revision-range'] = rev_range
def get_benchmark(path_def):
"""get a benchmark from path applying possible variant selection on the way
......
......@@ -150,6 +150,11 @@
return False # we can't know
if min_revs > revs:
return False
rev_range = constraints.get('compatible-revision-range')
if rev_range is not None:
compatible = list_mercurial_hashes(base_dir, rev_range)
if changeset not in compatible:
return False
return True
......
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