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