Searched refs:type_str (Results 1 – 8 of 8) sorted by relevance
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | handlers.py | 72 def __init__(self, instance, type_str: str, options: argparse.Namespace, 80 self.type_str = type_str 184 type_str: str, 193 super().__init__(instance, type_str, options, generator_cmd, suite_name_check) 392 type_str: str, 401 super().__init__(instance, type_str, options, generator_cmd, suite_name_check) 403 if type_str == 'renode': 405 elif type_str == 'native': 864 type_str: str, 874 super().__init__(instance, type_str, options, generator_cmd, suite_name_check) [all …]
|
D | harness.py | 412 if handler.type_str == 'device': 416 elif handler.type_str in SUPPORTED_SIMS_IN_PYTEST: 418 elif handler.type_str == 'build': 425 if handler.type_str != 'device': 429 if handler.options.extra_test_args and handler.type_str == 'native':
|
D | runner.py | 1533 more_info = instance.handler.type_str 1697 if instance.handler.type_str == "device":
|
/Zephyr-latest/scripts/tests/twister/pytest_integration/ |
D | test_harness_pytest.py | 32 testinstance.handler.type_str = 'native' 41 testinstance.handler.type_str = device_type
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_runner.py | 2070 instance_mock.handler.type_str = 'dummy handler type' 2302 type_str, argument 2328 instance_mock.handler.type_str = type_str
|
D | test_testinstance.py | 499 assert testinstance.handler.type_str == expected_handler_type
|
D | test_handlers.py | 636 type_str, argument 642 handler = SimulationHandler(mocked_instance, type_str, mock.Mock())
|
D | test_harness.py | 560 handler = mock.Mock(options=mock.Mock(verbose=0), type_str="handler_type")
|