Home
last modified time | relevance | path

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

/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dhandlers.py73 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 …]
Dharness.py424 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':
Drunner.py1590 more_info = instance.handler.type_str
1756 if instance.handler.type_str == "device":
/Zephyr-latest/scripts/tests/twister/pytest_integration/
Dtest_harness_pytest.py33 testinstance.handler.type_str = 'native'
42 testinstance.handler.type_str = device_type
/Zephyr-latest/scripts/tests/twister/
Dtest_harness.py643 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")
Dtest_runner.py2078 instance_mock.handler.type_str = 'dummy handler type'
2311 type_str, argument
2337 instance_mock.handler.type_str = type_str
Dtest_testinstance.py499 assert testinstance.handler.type_str == expected_handler_type
Dtest_handlers.py636 type_str, argument
642 handler = SimulationHandler(mocked_instance, type_str, mock.Mock())