Home | History | Annotate | Download | only in site_utils

Lines Matching refs:suite

7 """Tool for preprocessing control files to build a suite to control files map.
10 their suite.Data will be written to stdout (or, optionally a file), eg:
16 dynamic suite infrastructure in server/cros/dynamic_suite.py. It is invoked
17 at build time to generate said suite to control files map, which dynamic_suite
18 consults at run time to determine which tests belong to a suite.
25 from autotest_lib.server.cros.dynamic_suite import suite
35 """Find all control files in autotest_dir that have 'SUITE='
38 @return: All control files in autotest_dir that have a suite attribute.
40 fs_getter = suite.Suite.create_fs_getter(autotest_dir)
41 predicate = lambda t: hasattr(t, 'suite')
42 return suite.Suite.find_and_parse_tests(fs_getter, predicate,
48 Partition all control files in autotest_dir based on suite.
54 @return suite_control_files: A dictionary mapping suite->[control files]