Home | History | Annotate | Download | only in android

Lines Matching full:help

52                    help=('If set, run test suites under out/Debug. '
56 help=('If set, run test suites under out/Release.'
59 help='Cleanup test files on the device after run',
63 help=('Number of retries for a test before '
70 help='Verbose level (multiple times for more)')
73 help=('Run the test under a tool '
74 '(use --tool help to list them)'))
77 help=('Address of the server that is hosting the '
81 help=('Do not push dependencies to the device. '
85 help=('Target device for the test suite '
105 help=('Executable name of the test suite to run '
106 '(use -s help to list them).'))
109 help='googletest-style filter string.')
113 help='Also run disabled tests if applicable.')
116 help='Additional arguments to pass to the test.')
118 help='Timeout to wait for each test',
132 help='googletest-style filter string.')
137 """Intercept test suite help to list test suites.
142 if options.suite_name == 'help':
161 help=('Test filter (if not fully qualified, '
165 help=('Comma-separated list of annotations. Run only tests with any of '
171 help=('Comma-separated list of annotations. Exclude tests with these '
175 help='Capture screenshots of test failures')
177 help='Saves the JSON file for each UI Perf test.')
179 help='Run official build tests.')
181 help=('Each instance defines a directory of test '
219 default=False, help='Run only the Java tests.')
222 help='Run only the host-driven tests.')
224 help='Root of the host-driven tests.')
227 help='Wait for debugger.')
230 help=('The name of the apk containing the tests '
233 help=('Directory in which to place all generated '
303 help=('Package under test. Possible values: %s' %
307 help=('The name of the dexed jar containing the tests (without the '
375 help=('Package under test. Possible values: %s' %
379 help='Number of events to generate [default: %default].')
382 help='A list of allowed categories.')
385 help='Delay between events (ms) [default: %default]. ')
388 help=('Seed value for pseudo-random generator. Same seed value generates '
392 help=('String of other args to pass to the command verbatim '
442 help='Execute the given command with retries, but only print the result '
446 help='JSON file containing the list of commands to run.')
449 help=('A JSON file containing steps that are flaky '
453 help='The name of a previously executed perf step to print.')
456 help=('Do not impose a timeout. Each perf step is responsible for '
460 help=('Test filter (will match against the names listed in --steps).'))
464 help='Just print the steps without executing.')
733 """Display help for a certain command, or overall help.
745 # If we don't have any args, display overall help
759 # Treat the help command as a special case. We don't care about showing a
760 # specific help page for itself.
761 if command == 'help':
790 'help': CommandFunctionTuple(lambda option_parser: None, HelpCommand)