1*9c5db199SXin Li# Copyright 2016 The Chromium OS Authors. All rights reserved. 2*9c5db199SXin Li# Use of this source code is governed by a BSD-style license that can be 3*9c5db199SXin Li# found in the LICENSE file. 4*9c5db199SXin Li 5*9c5db199SXin LiAUTHOR = "[email protected]" 6*9c5db199SXin LiNAME = "cts_N" 7*9c5db199SXin LiPURPOSE = "Special suite for final CTS qualification of ARC++ on stable." 8*9c5db199SXin LiCRITERIA = "All tests with SUITE=cts_N must pass." 9*9c5db199SXin Li 10*9c5db199SXin LiTIME = "LONG" 11*9c5db199SXin LiTEST_CATEGORY = "General" 12*9c5db199SXin LiTEST_CLASS = "suite" 13*9c5db199SXin LiTEST_TYPE = "Server" 14*9c5db199SXin Li 15*9c5db199SXin LiDOC = """ 16*9c5db199SXin LiChromeOS ARC++ tests. 17*9c5db199SXin Li 18*9c5db199SXin Li@param build: The name of the image to test. 19*9c5db199SXin Li Ex: x86-mario-release/R17-1412.33.0-a1-b29 20*9c5db199SXin Li@param board: The board to test on. Ex: x86-mario 21*9c5db199SXin Li@param pool: The pool of machines to utilize for scheduling. If pool=None 22*9c5db199SXin Li board is used. 23*9c5db199SXin Li@param check_hosts: require appropriate live hosts to exist in the lab. 24*9c5db199SXin Li@param SKIP_IMAGE: (optional) If present and True, don't re-image devices. 25*9c5db199SXin Li""" 26*9c5db199SXin Li 27*9c5db199SXin Liimport common 28*9c5db199SXin Lifrom autotest_lib.server.cros.dynamic_suite import dynamic_suite 29*9c5db199SXin Li 30*9c5db199SXin Li 31*9c5db199SXin Lidef predicate(test): 32*9c5db199SXin Li if not hasattr(test, 'suite') or not hasattr(test, 'name'): 33*9c5db199SXin Li return False 34*9c5db199SXin Li if not test.suite == NAME: 35*9c5db199SXin Li return False 36*9c5db199SXin Li # Strip off the cheets_CTS_N. from the test name before comparing to args 37*9c5db199SXin Li name = test.name[test.name.find('.') + 1:] 38*9c5db199SXin Li if 'tests' in args_dict and name not in args_dict['tests']: 39*9c5db199SXin Li return False 40*9c5db199SXin Li return True 41*9c5db199SXin Li 42*9c5db199SXin Liargs_dict['name'] = NAME 43*9c5db199SXin Liargs_dict['job'] = job 44*9c5db199SXin Liargs_dict['file_bugs'] = False 45*9c5db199SXin Liargs_dict['max_runtime_mins'] = 5040 # 5040 min = 3.5 days 46*9c5db199SXin Liargs_dict['timeout_mins'] = 5040 # Bump default 1 day to half a week as well. 47*9c5db199SXin Liargs_dict['add_experimental'] = True 48*9c5db199SXin Liargs_dict['predicate'] = predicate 49*9c5db199SXin Lidynamic_suite.reimage_and_run(**args_dict) 50*9c5db199SXin Li 51