Home | History | Annotate | Download | only in site_utils

Lines Matching refs:suite

7 """Tool for enumerating the tests in a given suite.
9 Given an autotest root directory and a suite name (e.g., bvt, regression), this
10 tool will print out the name of each test in that suite, one per line.
19 dynamic suite infrastructure in server/cros/dynamic_suite.py.
31 from autotest_lib.server.cros.dynamic_suite.suite import Suite
34 """Parse command line for arguments including autotest directory, suite
53 """Entry point to run the suite enumerator command."""
63 fs_getter = Suite.create_fs_getter(options.autotest_dir)
66 for suite in Suite.list_all_suites('', devserver, fs_getter):
67 print suite
70 suite = Suite.create_from_name(args[0], {}, '', devserver, fs_getter)
76 PRETEST_LIST, suite.stable_tests()):
79 PRETEST_LIST, suite.stable_tests()):