• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2022 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5AUTHOR = 'xianuowang'
6ATTRIBUTES = "suite:infra_multi_duts_with_android"
7NAME = 'infra_MultiDutsWithAndroid'
8TIME = 'SHORT'
9TEST_CATEGORY = 'General'
10TEST_CLASS = 'stub'
11TEST_TYPE = 'server'
12PY_VERSION = 3
13DOC = """
14Verify the test can create correct host type for Android devices and perform
15basic adb actions.
16"""
17
18
19def run(machine):
20    host = hosts.create_host(machine)
21    companions = hosts.create_companion_hosts(companion_hosts)
22    job.run_test('infra_MultiDutsWithAndroid', host=host, companions=companions)
23
24parallel_simple(run, machines)