Searched refs:test_source (Results 1 – 3 of 3) sorted by relevance
/test/testfwk/xdevice/src/xdevice/_core/executor/ |
D | source.py | 183 for test_source in config.testlist.split(";"): 184 if test_source.strip(): 185 test_sources.append(test_source.strip()) 206 for test_source in config.testcase.split(";"): 207 if test_source.strip(): 208 test_sources.append(test_source.strip()) 249 for test_source in test_sources: 254 norm_test_sources, test_source, testcases_dir, config) 260 norm_test_sources.append(test_source) 266 def _append_norm_test_source(norm_test_sources, test_source, testcases_dir, argument [all …]
|
D | scheduler.py | 369 def _find_device_options(environment_config, options, test_source): argument 379 device_option = DeviceSelectionOption(options, label, test_source) 385 test_source.config_file or test_source.source_string 425 def get_device_options(cls, options, test_source): argument 427 config_file = test_source.config_file 430 if test_source.source_string and is_config_str( 431 test_source.source_string): 432 json_config = JsonParser(test_source.source_string) 435 environment_config, options, test_source) 437 json_config = JsonParser(test_source.config_file) [all …]
|
/test/testfwk/xdevice/src/xdevice/_core/environment/ |
D | manager_env.py | 257 def __init__(self, options, label=None, test_source=None): argument 260 self.test_driver = test_source.test_type
|