Lines Matching refs:args
41 self.args = None
70 self.args = parser.parse_args(self.arguments)
73 for _suite_out_file in self.args.suite_out_paths.split(","):
76 if self.args.project_type == "pythontest":
80 self.args.suite_filename)
81 if self.args.project_type == "pythontest":
83 source_dirs=self.args.target_file,
85 elif self.args.project_type == "open_source_test":
87 sources=self.args.target_file,
89 elif self.args.project_type == "hjsunit":
90 utils.build_js_hap(self.args.project_path, self.args.
91 suite_out_paths, self.args.hap_name)
92 elif self.args.project_type != "hctest":
94 sources=self.args.target_file,
97 _testsuite_name = self.args.suite_filename
102 if self.args.project_type != "open_source_test":
108 utils.record_testmodule_info(self.args.build_target_name,
110 self.args.subsystem_name,
112 _test_xml = self.args.test_xml
154 values = {"module": module_name, "subsystem": self.args.subsystem_name}
174 self.args = parser.parse_args(arguments)
181 ohos_dir = os.path.join(self.args.project_dir, 'plugins', 'ohos')
183 factory_script = os.path.join(self.args.project_dir, "factory.sh")
188 subprocess.check_call(command, cwd=self.args.project_dir)
194 dist_dir = os.path.join(self.args.project_dir, 'dist')
197 [os.path.join(self.args.project_dir, "run.bat"),
198 os.path.join(self.args.project_dir, "run.sh")])
199 config_dir = os.path.join(self.args.project_dir, "config")
200 res_dir = os.path.join(self.args.project_dir, "resource")
201 for tool_dir in self.args.output_dirs.split(","):
230 args = parser.parse_args(self.arguments)
231 if not args.build_enabled.lower() == 'true':
235 suite_path = args.suite_path
271 args = arguments[1:]
272 func = _find_action(action, args)