Lines Matching refs:parser
24 parser = argparse.ArgumentParser(description="Run libcore tests using the vogar testing tool.")
25 parser.add_argument('--mode', choices=['device', 'host', 'jvm'], required=True,
27 parser.add_argument('--variant', choices=['X32', 'X64'],
29 parser.add_argument('-j', '--jobs', type=int,
31 parser.add_argument('--timeout', type=int,
33 parser.add_argument('--debug', action='store_true',
35 parser.add_argument('--dry-run', action='store_true',
37 parser.add_argument('--no-getrandom', action='store_false', dest='getrandom',
39 parser.add_argument('--no-jit', action='store_false', dest='jit',
41 parser.add_argument('--gcstress', action='store_true',
43 parser.add_argument('tests', nargs="*",
45 parser.add_argument('--verbose', action='store_true', help='Print verbose output from vogar.')
46 return parser.parse_args()