You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
316 B

at = autotest.Autotest()
def run_client(machine):
host = hosts.create_host(machine)
host.log_kernel()
if synchronous_offload_dir:
host.env[autotest.OFFLOAD_ENVVAR] = synchronous_offload_dir
at.run(control, host=host, use_packaging=use_packaging)
job.parallel_simple(run_client, machines)