Searched refs:type_str (Results 1 – 8 of 8) sorted by relevance
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | handlers.py | 73 def __init__(self, instance, type_str: str, options: argparse.Namespace, 81 self.type_str = type_str 185 type_str: str, 194 super().__init__(instance, type_str, options, generator_cmd, suite_name_check) 393 type_str: str, 402 super().__init__(instance, type_str, options, generator_cmd, suite_name_check) 404 if type_str == 'renode': 406 elif type_str == 'native': 864 type_str: str, 874 super().__init__(instance, type_str, options, generator_cmd, suite_name_check) [all …]
|
D | harness.py | 424 if handler.type_str == 'device': 428 elif handler.type_str in SUPPORTED_SIMS_IN_PYTEST: 430 elif handler.type_str == 'build': 437 if handler.type_str != 'device': 441 if handler.options.extra_test_args and handler.type_str == 'native':
|
D | runner.py | 1590 more_info = instance.handler.type_str 1756 if instance.handler.type_str == "device":
|
/Zephyr-latest/scripts/tests/twister/pytest_integration/ |
D | test_harness_pytest.py | 33 testinstance.handler.type_str = 'native' 42 testinstance.handler.type_str = device_type
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_harness.py | 643 handler = mock.Mock(options=mock.Mock(verbose=0), type_str="handler_type") 800 instance.handler = mock.Mock(options=mock.Mock(verbose=0), type_str="handler_type")
|
D | test_runner.py | 2078 instance_mock.handler.type_str = 'dummy handler type' 2311 type_str, argument 2337 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())
|