Lines Matching refs:args
122 def ShouldGenerateAArch32(args):
123 return (not args.aarch32_only and not args.aarch64_only) or args.aarch32_only
125 def ShouldGenerateAArch64(args):
126 return (not args.aarch32_only and not args.aarch64_only) or args.aarch64_only
139 args = BuildOptions(root_dir)
142 status, test_list = util.getstatusoutput(args.runner + ' --list')
145 if ShouldGenerateAArch64(args):
152 master_trace_f = open(args.out, 'w')
165 if not args.filter or re.compile(args.filter).search(test):
168 cmd = ' '.join([args.runner, '--generate_test_trace', test])
194 if ShouldGenerateAArch32(args):
205 if args.filter:
206 tests = filter(re.compile(args.filter).search, tests)
218 cmd = ' '.join([args.runner, '--generate_test_trace', test])