1at = autotest.Autotest() 2 3 4def run_client(machine): 5 host = hosts.create_host(machine) 6 host.log_kernel() 7 if synchronous_offload_dir: 8 host.env[autotest.OFFLOAD_ENVVAR] = synchronous_offload_dir 9 at.run(control, host=host, use_packaging=use_packaging, 10 timeout=extended_timeout) 11 12 13job.parallel_simple(run_client, machines) 14