• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2013 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 = "Chrome OS Team"
6NAME = "cts_N"
7PURPOSE = "Test that the moblab has the correct setup for cts_N suite"
8ATTRIBUTES = "suite:check_setup_cts_N"
9TIME = "SHORT"
10TEST_CATEGORY = "General"
11TEST_CLASS = "dummy"
12TEST_TYPE = "server"
13REQUIRE_SSP = False
14
15DOC = """
16Test that the moblab has 5 live DUTs connected, and that at least one of those
17DUTs has each required label
18"""
19
20def run(machine):
21    job.run_test('moblab_Setup', host=hosts.create_host(machine),
22      required_duts=5, required_labels=['lighting', 'noloopback'])
23
24parallel_simple(run, machines)
25