@@ -359,7 +359,7 @@ def graalpython_gate_runner(args, tasks):
359
359
360
360
with Task ('GraalPython sandboxed tests' , tasks , tags = [GraalPythonTags .unittest_sandboxed ]) as task :
361
361
if task :
362
- run_python_unittests (python_gvm (["sandboxed" ]), args = ["--llvm.sandboxed " ])
362
+ run_python_unittests (python_gvm (["sandboxed" ]), args = ["--llvm.managed " ])
363
363
364
364
with Task ('GraalPython Python tests' , tasks , tags = [GraalPythonTags .tagged ]) as task :
365
365
if task :
@@ -373,7 +373,7 @@ def graalpython_gate_runner(args, tasks):
373
373
374
374
with Task ('GraalPython sandboxed tests on SVM' , tasks , tags = [GraalPythonTags .svmunit_sandboxed ]) as task :
375
375
if task :
376
- run_python_unittests (python_svm (["sandboxed" ]), args = ["--llvm.sandboxed " ])
376
+ run_python_unittests (python_svm (["sandboxed" ]), args = ["--llvm.managed " ])
377
377
378
378
with Task ('GraalPython license header update' , tasks , tags = [GraalPythonTags .license ]) as task :
379
379
if task :
@@ -522,7 +522,7 @@ def run_shared_lib_test(args=None):
522
522
return status;
523
523
}
524
524
#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");
526
526
if (status != poly_ok) {
527
527
return status;
528
528
}
@@ -998,10 +998,10 @@ def _register_vms(namespace):
998
998
'-Dgraal.TruffleExperimentalSplittingAllowForcedSplits=false'
999
999
]), SUITE , 10 )
1000
1000
python_vm_registry .add_vm (GraalPythonVm (config_name = CONFIGURATION_SANDBOXED , extra_polyglot_args = [
1001
- '--llvm.sandboxed ' ,
1001
+ '--llvm.managed ' ,
1002
1002
]), SUITE , 10 )
1003
1003
python_vm_registry .add_vm (GraalPythonVm (config_name = CONFIGURATION_NATIVE , extra_polyglot_args = [
1004
- "--llvm.sandboxed =false"
1004
+ "--llvm.managed =false"
1005
1005
]), SUITE , 10 )
1006
1006
1007
1007
0 commit comments