Home | History | Annotate | Download | only in test_suites
      1 # Copyright 2017 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 = "check_setup_cts_N"
      7 PURPOSE = """
      8 Test moblab has correct DUT configuration for cts N suite
      9 """
     10 
     11 TIME = "SHORT"
     12 TEST_CATEGORY = "Setup"
     13 TEST_CLASS = "suite"
     14 TEST_TYPE = "Server"
     15 
     16 DOC = """
     17 Tests that moblab has the minimum number of DUTs, with correct labels. This
     18 test relieves the pain point of kicking off a long running test suite, but
     19 having a handful of tests fail, or not run at all because some the DUT setup
     20 wasn't correct.
     21 """
     22 
     23 import common
     24 from autotest_lib.server.cros.dynamic_suite import dynamic_suite
     25 
     26 args_dict['add_experimental'] = True
     27 args_dict['name'] = NAME
     28 args_dict['job'] = job
     29 
     30 dynamic_suite.reimage_and_run(**args_dict)
     31