Home
last modified time | relevance | path

Searched refs:extra_test_args (Results 1 – 10 of 10) sorted by relevance

/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/
Dtwister_harness_config.py39 extra_test_args: str = '' variable in DeviceConfig
85 extra_test_args=config.option.extra_test_args
/Zephyr-latest/scripts/tests/twister/pytest_integration/
Dtest_harness_pytest.py31 testinstance.handler.options.extra_test_args = []
78 extra_test_args = ['-stop_at=3', '-no-rt']
79 testinstance.handler.options.extra_test_args = extra_test_args
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Denvironment.py963 if len(options.extra_test_args) > 0:
969 if options.extra_test_args[0] != "--":
971 double_dash = options.extra_test_args.index("--")
973 double_dash = len(options.extra_test_args)
974 unrecognized = " ".join(options.extra_test_args[0:double_dash])
984 options.extra_test_args = options.extra_test_args[1:]
Dhandlers.py196 self.extra_test_args = None
301 if self.extra_test_args is not None:
302 command.extend(self.extra_test_args)
Drunner.py1706 if self.options.extra_test_args and instance.platform.arch == "posix":
1707 instance.handler.extra_test_args = self.options.extra_test_args
Dharness.py429 if handler.options.extra_test_args and handler.type_str == 'native':
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Ddevice_adapter.py70 if self.device_config.extra_test_args:
71 self.command.extend(self.device_config.extra_test_args.split())
/Zephyr-latest/scripts/tests/twister/
Dtest_environment.py257 assert options.extra_test_args == ['dummy_extra_1', 'dummy_extra_2']
Dtest_runner.py2336 pb.options.extra_test_args = ['dummy_arg1', 'dummy_arg2']
2356 assert pb.instance.handler.extra_test_args == ['dummy_arg1',
Dtest_handlers.py451 handler.extra_test_args = extra_args