Lines Matching refs:args
111 args = parser.parse_args()
114 result = re.match(regex, args.hal_package_name)
119 if not args.hal_package_name.startswith(args.package_root + '.'):
123 if args.test_type != 'target' and args.test_type != 'host':
126 elif args.test_type == 'host' and args.is_replay:
131 result = re.match(regex, args.time_out)
136 if not args.test_config_dir:
137 if args.package_root == Constant.HAL_PACKAGE_PREFIX:
138 args.test_config_dir = Constant.VTS_HAL_TEST_CASE_PATH
140 args.test_config_dir = args.path_root
143 if args.test_type == 'target' and not args.disable_stop_runtime:
147 package_root=args.package_root, path_root=args.path_root)
148 test_case_creater = TestCaseCreator(vts_spec_parser, args.hal_package_name)
150 args.test_type,
151 args.time_out,
152 is_replay=args.is_replay,
154 test_binary_file=args.test_binary_file,
155 test_script_file=args.test_script_file,
156 test_config_dir=args.test_config_dir,
157 package_root=args.package_root,
158 path_root=args.path_root):
160 args.hal_package_name)