@@ -359,7 +359,7 @@ def graalpython_gate_runner(args, tasks):
359359
360360 with Task ('GraalPython sandboxed tests' , tasks , tags = [GraalPythonTags .unittest_sandboxed ]) as task :
361361 if task :
362- run_python_unittests (python_gvm (["sandboxed" ]), args = ["--llvm.sandboxed " ])
362+ run_python_unittests (python_gvm (["sandboxed" ]), args = ["--llvm.managed " ])
363363
364364 with Task ('GraalPython Python tests' , tasks , tags = [GraalPythonTags .tagged ]) as task :
365365 if task :
@@ -373,7 +373,7 @@ def graalpython_gate_runner(args, tasks):
373373
374374 with Task ('GraalPython sandboxed tests on SVM' , tasks , tags = [GraalPythonTags .svmunit_sandboxed ]) as task :
375375 if task :
376- run_python_unittests (python_svm (["sandboxed" ]), args = ["--llvm.sandboxed " ])
376+ run_python_unittests (python_svm (["sandboxed" ]), args = ["--llvm.managed " ])
377377
378378 with Task ('GraalPython license header update' , tasks , tags = [GraalPythonTags .license ]) as task :
379379 if task :
@@ -522,7 +522,7 @@ def run_shared_lib_test(args=None):
522522 return status;
523523 }
524524 #if %s
525- status = poly_context_builder_option(isolate_thread, builder, "llvm.sandboxed ", "true");
525+ status = poly_context_builder_option(isolate_thread, builder, "llvm.managed ", "true");
526526 if (status != poly_ok) {
527527 return status;
528528 }
@@ -998,10 +998,10 @@ def _register_vms(namespace):
998998 '-Dgraal.TruffleExperimentalSplittingAllowForcedSplits=false'
999999 ]), SUITE , 10 )
10001000 python_vm_registry .add_vm (GraalPythonVm (config_name = CONFIGURATION_SANDBOXED , extra_polyglot_args = [
1001- '--llvm.sandboxed ' ,
1001+ '--llvm.managed ' ,
10021002 ]), SUITE , 10 )
10031003 python_vm_registry .add_vm (GraalPythonVm (config_name = CONFIGURATION_NATIVE , extra_polyglot_args = [
1004- "--llvm.sandboxed =false"
1004+ "--llvm.managed =false"
10051005 ]), SUITE , 10 )
10061006 python_vm_registry .add_vm (GraalPythonVm (config_name = CONFIGURATION_DUMP , extra_polyglot_args = [
10071007 "--experimental-options" , "-dump"
0 commit comments