Home
last modified time | relevance | path

Searched refs:run_command (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/fixtures/
Dmcumgr_fixture_test.py50 mcumgr.run_command = mock.Mock(return_value=cmd_output)
70 mcumgr.run_command = mock.Mock(return_value=cmd_output)
85 mcumgr.run_command.assert_called_with('image test 1111')
89 mcumgr.run_command.assert_called_with('image confirm 1111')
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/
Dmcumgr.py48 def run_command(self, cmd: str) -> str: member in MCUmgr
54 self.run_command('reset')
60 self.run_command(command)
64 output = self.run_command('image list')
110 self.run_command(f'image test {hash}')
115 self.run_command(f'image confirm {hash}')
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dcoverage.py226 def run_command(self, cmd, coveragelog): member in Lcov
262 return self.run_command(cmd, coveragelog)
297 return self.run_command(cmd, coveragelog)
Dharness.py368 self.run_command(cmd, timeout)
493 def run_command(self, cmd, timeout): member in Pytest