8000 Fix heap benchmarks · oracle/graalpython@2bdeece · GitHub
[go: up one dir, main page]

Skip to content

Commit 2bdeece

Browse files
committed
Fix heap benchmarks
1 parent 2b00e5e commit 2bdeece

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

mx.graalpython/mx_graalpython_benchmark.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,11 @@ def post_process_command_line_args(self, args):
147147
return args
148148

149149
def run_vm(self, args, out=None, err=None, cwd=None, nonZeroIsFatal=False, env=None):
150-
mx.logv(shlex.join([self.interpreter] + args))
150+
cmd = [self.interpreter] + args
151+
cmd = mx.apply_command_mapper_hooks(cmd, self.command_mapper_hooks)
152+
mx.logv(shlex.join(cmd))
151153
return mx.run(
152-
[self.interpreter] + args,
154+
cmd,
153155
out=out,
154156
err=err,
155157
cwd=cwd,

0 commit comments

Comments
 (0)
0