mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 1 | at = autotest.Autotest() |
| 2 | |
mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 3 | |
mbligh | 5493129 | 2008-11-23 14:35:51 +0000 | [diff] [blame] | 4 | def run_client(machine): |
Eric Li | 861b2d5 | 2011-02-04 14:50:35 -0800 | [diff] [blame] | 5 | host = hosts.create_host(machine) |
mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 6 | host.log_kernel() |
Jacob Kopczynski | f9f730e | 2020-03-11 13:23:14 -0700 | [diff] [blame] | 7 | if synchronous_offload_dir: |
| 8 | host.env[autotest.OFFLOAD_ENVVAR] = synchronous_offload_dir |
Dan Shi | b669cbd | 2013-09-13 11:17:17 -0700 | [diff] [blame] | 9 | at.run(control, host=host, use_packaging=use_packaging) |
mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 10 | |
mbligh | 5493129 | 2008-11-23 14:35:51 +0000 | [diff] [blame] | 11 | |
mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 12 | job.parallel_simple(run_client, machines) |