Searched refs:test_source (Results 1 – 3 of 3) sorted by relevance
| /test/testfwk/xdevice/src/xdevice/_core/executor/ |
| D | source.py | 182 for test_source in config.testlist.split(";"): 183 if test_source.strip(): 184 test_sources.append(test_source.strip()) 199 for test_source in config.testcase.split(";"): 200 if test_source.strip(): 201 test_sources.append(test_source.strip()) 242 for test_source in test_sources: 247 norm_test_sources, test_source, testcases_dir, config) 253 norm_test_sources.append(test_source) 259 def _append_norm_test_source(norm_test_sources, test_source, testcases_dir, argument [all …]
|
| D | scheduler.py | 336 def _find_device_options(environment_config, options, test_source): argument 346 device_option = DeviceSelectionOption(options, label, test_source) 352 test_source.config_file or test_source.source_string 388 def get_device_options(cls, options, test_source): argument 390 config_file = test_source.config_file 393 if test_source.source_string and is_config_str( 394 test_source.source_string): 395 json_config = JsonParser(test_source.source_string) 398 environment_config, options, test_source) 400 json_config = JsonParser(test_source.config_file) [all …]
|
| /test/testfwk/xdevice/src/xdevice/_core/environment/ |
| D | manager_env.py | 252 def __init__(self, options, label=None, test_source=None): argument 255 self.test_driver = test_source.test_type
|