Home
last modified time | relevance | path

Searched refs:NativeSimulatorAdapter (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/device/
Dbinary_adapter_test.py17 NativeSimulatorAdapter,
30 def fixture_device_adapter(tmp_path: Path) -> Generator[NativeSimulatorAdapter, None, None]:
33 …device = NativeSimulatorAdapter(DeviceConfig(build_dir=build_dir, type='native', base_timeout=5.0))
42 device: NativeSimulatorAdapter, script_path: str argument
43 ) -> Generator[NativeSimulatorAdapter, None, None]:
52 def test_if_binary_adapter_runs_without_errors(launched_device: NativeSimulatorAdapter) -> None: argument
68 device: NativeSimulatorAdapter, script_path: str argument
84 def test_if_binary_adapter_raises_exception_empty_command(device: NativeSimulatorAdapter) -> None: argument
93 patched_popen, device: NativeSimulatorAdapter argument
102 patched_popen, device: NativeSimulatorAdapter argument
[all …]
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/helpers/
Dshell_test.py5 from twister_harness.device.binary_adapter import NativeSimulatorAdapter
9 def test_if_shell_helper_properly_send_command(shell_simulator_adapter: NativeSimulatorAdapter) -> … argument
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/
Dconftest.py13 from twister_harness.device.binary_adapter import NativeSimulatorAdapter
47 ) -> Generator[NativeSimulatorAdapter, None, None]:
50 …device = NativeSimulatorAdapter(DeviceConfig(build_dir=build_dir, type='native', base_timeout=5.0))
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Dfactory.py15 NativeSimulatorAdapter,
46 DeviceFactory.register_device_class('native', NativeSimulatorAdapter)
Dbinary_adapter.py117 class NativeSimulatorAdapter(BinaryAdapterBase): class