Searched refs:MultiCommandTool (Results 1 – 4 of 4) sorted by relevance
35 from webkitpy.tool.multicommandtool import MultiCommandTool, Command, TryAgain89 class TrivialTool(MultiCommandTool):91 MultiCommandTool.__init__(self, name="trivial-tool", commands=commands)102 self.assertEqual(MultiCommandTool._split_command_name_from_args(args), expected_split)
46 from webkitpy.tool.multicommandtool import MultiCommandTool50 class WebKitPatch(MultiCommandTool, Host):62 MultiCommandTool.__init__(self)
212 class MultiCommandTool(object): class
9701 MultiCommandTool, but as discussed in person we'll intergrate the two24413 - Move MultiCommandTool._standalone_help_for_command to Command.standalone_help24414 - Move MultiCommandTool._help_epilog to Command._help_epilog24758 - Allow passing of explicit commands to MultiCommandTool.__init__24932 properly register themselves with MultiCommandTool.24963 MultiCommandTool should find Command objects automatically instead of with a manual list25053 Move MultiCommandTool and Command into a separate file and add some basic unit tests25078 - Add new MultiCommandTool class to contain option parsing and help printing logic.25080 … - MultiCommandTool has two abstract methods should_show_command_help and should_execute_command.