xref: /aosp_15_r20/external/autotest/server/control_segments/client_wrapper (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
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