Searched refs:CommandExecuter (Results 1 – 12 of 12) sorted by relevance
/external/toolchain-utils/crosperf/ |
D | suite_runner_unittest.py | 28 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter) 165 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommand') 196 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommand') 211 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommand') 212 @mock.patch.object(command_executer.CommandExecuter, 258 @mock.patch.object(command_executer.CommandExecuter, 290 @mock.patch.object(command_executer.CommandExecuter, 'RunCommandWOutput')
|
D | results_cache_unittest.py | 194 self.mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter) 215 @mock.patch.object(command_executer.CommandExecuter, 'RunCommand') 216 @mock.patch.object(command_executer.CommandExecuter, 'CopyFiles') 396 @mock.patch.object(command_executer.CommandExecuter, 'RunCommand') 397 @mock.patch.object(command_executer.CommandExecuter, 480 @mock.patch.object(command_executer.CommandExecuter, 'RunCommandGeneric') 536 @mock.patch.object(command_executer.CommandExecuter, 'ChrootRunCommand') 628 @mock.patch.object(command_executer.CommandExecuter, 693 @mock.patch.object(command_executer.CommandExecuter, 'RunCommand') 742 @mock.patch.object(command_executer.CommandExecuter, 'ChrootRunCommand') [all …]
|
D | machine_manager_unittest.py | 71 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter) 141 @mock.patch.object(command_executer.CommandExecuter, 'RunCommand') 142 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommand') 250 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommandWOutput') 673 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter) 724 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommand') 763 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommandWOutput') 783 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommandWOutput') 821 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommandWOutput')
|
D | schedv2_unittest.py | 16 from cros_utils.command_executer import CommandExecuter 68 mock_cmd_exec = mock.Mock(spec=CommandExecuter)
|
D | download_images_unittest.py | 36 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter) 99 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
|
D | experiment_runner_unittest.py | 104 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
|
/external/toolchain-utils/automation/common/ |
D | command_executer_test.py | 31 from automation.common.command_executer import CommandExecuter 52 class CommandExecuterUnderTest(CommandExecuter): 55 CommandExecuter.__init__(self, logger_to_set=LoggerMock())
|
D | command_executer.py | 21 class CommandExecuter(object): class 180 class LoggingCommandExecuter(CommandExecuter):
|
/external/toolchain-utils/automation/server/ |
D | server.py | 13 from automation.common.command_executer import CommandExecuter 29 CommandExecuter.Configure(dry_run)
|
D | job_group_manager.py | 10 from automation.common.command_executer import CommandExecuter 51 CommandExecuter().RunCommand(cmd.Chain(
|
/external/toolchain-utils/cros_utils/ |
D | command_executer_unittest.py | 18 ce = command_executer.CommandExecuter(logging_level)
|
D | command_executer.py | 38 return CommandExecuter(log_level, logger_to_set) 41 class CommandExecuter(object): class 638 class MockCommandExecuter(CommandExecuter):
|