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.py32 testinstance.handler.options.extra_test_args = []
79 extra_test_args = ['-stop_at=3', '-no-rt']
80 testinstance.handler.options.extra_test_args = extra_test_args
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Denvironment.py1008 if len(options.extra_test_args) > 0:
1014 if options.extra_test_args[0] != "--":
1016 double_dash = options.extra_test_args.index("--")
1018 double_dash = len(options.extra_test_args)
1019 unrecognized = " ".join(options.extra_test_args[0:double_dash])
1029 options.extra_test_args = options.extra_test_args[1:]
Dhandlers.py197 self.extra_test_args = None
302 if self.extra_test_args is not None:
303 command.extend(self.extra_test_args)
Drunner.py1765 if self.options.extra_test_args and instance.platform.arch == "posix":
1766 instance.handler.extra_test_args = self.options.extra_test_args
Dharness.py441 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.py2345 pb.options.extra_test_args = ['dummy_arg1', 'dummy_arg2']
2365 assert pb.instance.handler.extra_test_args == ['dummy_arg1',
Dtest_handlers.py451 handler.extra_test_args = extra_args