Lines Matching full:suite
8 ATTRIBUTES either not match to SUITE or not in the attribute allowlist."""
17 from autotest_lib.server.cros.dynamic_suite.suite import Suite
42 # Go through all control file, check whether attribute matches suite. Return
44 fs_getter = Suite.create_fs_getter(common.autotest_dir)
51 # Modify attributes based on suite for the control files not match.
84 # Read the attr in the control files, check with allowlist and suite.
92 # Test when suite exists, whether attributes match suites
93 if hasattr(cd, 'suite'):
94 target_attrs = set('suite:' + x.strip()
95 for x in cd.suite.split(',') if x.strip())
98 # Test when suite not exists, whether attributes is empty
99 elif not hasattr(cd, 'suite') and cd_attrs:
116 # Parse attribute from suite, and prepare ATTRIBUTES line.
118 suite = cd.suite
120 attr_items = set('suite:' + x.strip() for x in suite.split(',')
127 # Read control file and modify the suite line with attribute added.
132 if val.startswith('SUITE =') or val.startswith('SUITE=')