HomeSort by relevance Sort by last modified time
    Searched refs:CommandExecuter (Results 1 - 12 of 12) sorted by null

  /external/toolchain-utils/cros_utils/
command_executer_unittest.py 13 """Test for CommandExecuter class."""
18 ce = command_executer.CommandExecuter(logging_level)
command_executer.py 38 return CommandExecuter(log_level, logger_to_set)
41 class CommandExecuter(object):
638 class MockCommandExecuter(CommandExecuter):
639 """Mock class for class CommandExecuter."""
  /external/toolchain-utils/crosperf/
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')
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')
    [all...]
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')
    [all...]
download_images_unittest.py 36 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
99 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
schedv2_unittest.py 16 from cros_utils.command_executer import CommandExecuter
68 mock_cmd_exec = mock.Mock(spec=CommandExecuter)
experiment_runner_unittest.py 104 mock_cmd_exec = mock.Mock(spec=command_executer.CommandExecuter)
  /external/toolchain-utils/automation/server/
job_group_manager.py 10 from automation.common.command_executer import CommandExecuter
51 CommandExecuter().RunCommand(cmd.Chain(
server.py 13 from automation.common.command_executer import CommandExecuter
29 CommandExecuter.Configure(dry_run)
  /external/toolchain-utils/automation/common/
command_executer_test.py 31 from automation.common.command_executer import CommandExecuter
52 class CommandExecuterUnderTest(CommandExecuter):
55 CommandExecuter.__init__(self, logger_to_set=LoggerMock())
command_executer.py 21 class CommandExecuter(object):
180 class LoggingCommandExecuter(CommandExecuter):

Completed in 2655 milliseconds