Home
last modified time | relevance | path

Searched refs:CommandExecuter (Results 1 – 16 of 16) sorted by relevance

/external/toolchain-utils/cros_utils/
Dbuildbot_utils_unittest.py90 with patch.object(command_executer.CommandExecuter,
98 with patch.object(command_executer.CommandExecuter,
128 with patch.object(command_executer.CommandExecuter,
138 with patch.object(command_executer.CommandExecuter,
Dcommand_executer_unittest.py23 ce = command_executer.CommandExecuter(logging_level)
Ddevice_setup_utils_unittest.py101 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
116 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommandWOutput')
125 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommandWOutput')
141 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommandWOutput')
Dcommand_executer.py41 return CommandExecuter(log_level, logger_to_set)
44 class CommandExecuter(object): class
661 class MockCommandExecuter(CommandExecuter):
/external/toolchain-utils/crosperf/
Dresults_cache_unittest.py440 self.mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
462 @mock.patch.object(command_executer.CommandExecuter, 'RunCommand')
463 @mock.patch.object(command_executer.CommandExecuter, 'CopyFiles')
646 @mock.patch.object(command_executer.CommandExecuter, 'RunCommand')
647 @mock.patch.object(command_executer.CommandExecuter,
723 @mock.patch.object(command_executer.CommandExecuter,
744 @mock.patch.object(command_executer.CommandExecuter, 'RunCommandGeneric')
799 @mock.patch.object(command_executer.CommandExecuter, 'RunCommandWOutput')
808 @mock.patch.object(command_executer.CommandExecuter, 'RunCommandWOutput')
819 @mock.patch.object(command_executer.CommandExecuter, 'RunCommandWOutput')
[all …]
Dsuite_runner_unittest.py32 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
180 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommand')
181 @mock.patch.object(command_executer.CommandExecuter,
220 @mock.patch.object(command_executer.CommandExecuter, 'RunCommandWOutput')
Dmachine_manager_unittest.py73 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
142 @mock.patch.object(command_executer.CommandExecuter, 'RunCommand')
143 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommand')
251 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommandWOutput')
672 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
723 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommand')
762 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommandWOutput')
782 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommandWOutput')
820 @mock.patch.object(command_executer.CommandExecuter, 'CrosRunCommandWOutput')
Dschedv2_unittest.py21 from cros_utils.command_executer import CommandExecuter
75 mock_cmd_exec = mock.Mock(spec=CommandExecuter)
Ddownload_images_unittest.py40 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
103 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
Dexperiment_factory_unittest.py416 @mock.patch.object(command_executer.CommandExecuter, 'RunCommand')
Dexperiment_runner_unittest.py108 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
/external/toolchain-utils/deprecated/automation/common/
Dcommand_executer_test.py31 from automation.common.command_executer import CommandExecuter
52 class CommandExecuterUnderTest(CommandExecuter):
55 CommandExecuter.__init__(self, logger_to_set=LoggerMock())
Dcommand_executer.py21 class CommandExecuter(object): class
180 class LoggingCommandExecuter(CommandExecuter):
/external/toolchain-utils/deprecated/automation/server/
Dserver.py13 from automation.common.command_executer import CommandExecuter
29 CommandExecuter.Configure(dry_run)
Djob_group_manager.py10 from automation.common.command_executer import CommandExecuter
51 CommandExecuter().RunCommand(cmd.Chain(
/external/toolchain-utils/heatmaps/
Dheat_map_test.py71 @mock.patch.object(command_executer.CommandExecuter, 'ChrootRunCommand')