Skip to content

Commit 3e04802

Browse files
committed
Fix benchmark error message
1 parent d8f81e4 commit 3e04802

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
@@ -292,7 +292,7 @@ def interpreter(self):
292292
def post_process_command_line_args(self, args):
293293
if os.environ.get('BYTECODE_DSL_INTERPRETER', '').lower() == 'true' and not self.is_bytecode_dsl_config():
294294
print("Found environment variable BYTECODE_DSL_INTERPRETER, but the guest vm config is not Bytecode DSL config.")
295-
print("Did you want to use, e.g., `mx benchmark ... -- --host-vm-config=default-bc-dsl`?")
295+
print("Did you want to use, e.g., `mx benchmark ... -- --python-vm-config=default-bc-dsl`?")
296296
sys.exit(1)
297297
return self.get_extra_polyglot_args() + args
298298

0 commit comments

Comments
 (0)