CI: add flags required by recent openmpi to run on the CI

This commit is contained in:
Gabriel Ferreira
2022-01-11 13:43:35 -03:00
parent 70d11fe983
commit 330ffb75b6
2 changed files with 3 additions and 2 deletions

2
ns3
View File

@@ -789,8 +789,6 @@ def run_step(args, target_to_run, target_args):
commands = (args.command_template % target_to_run).split()
target_to_run = commands[0]
target_args = commands[1:] + target_args
if target_to_run in ["mpiexec", "mpirun"]:
target_args = ["--allow-run-as-root"] + target_args
program_arguments = [*debugging_software, target_to_run, *target_args]