Skip to content

Commit f3e4c8b

Browse files
committed
Use --first-parent to get the bisection commits
1 parent 915fa29 commit f3e4c8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mx.graalpython/mx_graalpython_bisect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def run_bisect_benchmark(suite, bad, good, callback, threshold=None):
4444
git_dir = suite.vc_dir
4545
commits = suite.vc.git_command(
4646
git_dir,
47-
['log', '--merges', '--format=format:%H', f'{good}^..{bad}'],
47+
['log', '--first-parent', '--format=format:%H', f'{good}^..{bad}'],
4848
abortOnError=True,
4949
).splitlines()
5050
if not commits:

0 commit comments

Comments
 (0)