Home
last modified time | relevance | path

Searched refs:parsed_configs (Results 1 – 1 of 1) sorted by relevance

/tools/test/connectivity/acts/framework/acts/bin/
Dact.py87 def _run_tests_parallel(parsed_configs, test_identifiers, repeat): argument
102 print("Executing {} concurrent test runs.".format(len(parsed_configs)))
103 arg_list = [(c, test_identifiers, repeat) for c in parsed_configs]
105 with multiprocessing.Pool(processes=len(parsed_configs)) as pool:
116 def _run_tests_sequential(parsed_configs, test_identifiers, repeat): argument
133 for c in parsed_configs:
239 parsed_configs = config_parser.load_test_config_file(
246 if args.parallel and len(parsed_configs) > 1:
248 exec_result = _run_tests_parallel(parsed_configs, test_identifiers,
252 exec_result = _run_tests_sequential(parsed_configs, test_identifiers,