8000 fix matching graalvm dev versions in benchmarks · oracle/graalpython@5a534a4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5a534a4

Browse files
committed
fix matching graalvm dev versions in benchmarks
1 parent d64b2e4 commit 5a534a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mx.graalpython/mx_graalpython_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def extract_vm_info(self, args=None):
273273
out_version = subprocess.check_output([self.interpreter, '--version'], universal_newlines=True)
274274
# The benchmark data goes back a ways, we modify the reported dims for
275275
# continuity with the historical queries
276-
graalvm_version_match = re.search(r"\(([^\)]+ ((?:\d+\.?)+))\)", out_version)
276+
graalvm_version_match = re.search(r"\(([^\)]+ ((?:\d+\.?)+)).*\)", out_version)
277277
if not graalvm_version_match:
278278
mx.log(f"Using {out_version} as platform version string input")
279279
graalvm_version_match = [out_version, out_version, out_version]

0 commit comments

Comments
 (0)
0