Fixed some more 'commands' to 'command' change.

llvm-svn: 129897
This commit is contained in:
Johnny Chen 2011-04-21 00:39:18 +00:00
parent b2ed28ea4b
commit b89982d696
3 changed files with 5 additions and 5 deletions

View File

@ -163,7 +163,7 @@ CommandInterpreter::LoadCommandDictionary ()
m_command_dict["apropos"] = CommandObjectSP (new CommandObjectApropos (*this));
m_command_dict["breakpoint"]= CommandObjectSP (new CommandObjectMultiwordBreakpoint (*this));
//m_command_dict["call"] = CommandObjectSP (new CommandObjectCall (*this));
m_command_dict["commands"] = CommandObjectSP (new CommandObjectMultiwordCommands (*this));
m_command_dict["command"] = CommandObjectSP (new CommandObjectMultiwordCommands (*this));
m_command_dict["disassemble"] = CommandObjectSP (new CommandObjectDisassemble (*this));
m_command_dict["expression"]= CommandObjectSP (new CommandObjectExpression (*this));
// m_command_dict["file"] = CommandObjectSP (new CommandObjectFile (*this));
@ -562,7 +562,7 @@ CommandInterpreter::GetHelp (CommandReturnObject &result)
if (m_alias_dict.size() > 0)
{
result.AppendMessage("The following is a list of your current command abbreviations "
"(see 'help commands alias' for more info):");
"(see 'help command alias' for more info):");
result.AppendMessage("");
max_len = FindLongestCommandWord (m_alias_dict);

View File

@ -17,7 +17,7 @@ class AbbreviationsTestCase(TestBase):
substrs = ['breakpoint command add',
'breakpoint command list',
'breakpoint list',
'commands alias',
'command alias',
'expression',
'script'])

View File

@ -53,8 +53,8 @@ class AliasTestCase(TestBase):
# substrs = [ "hello" ])
self.runCmd ("commands alias alias commands alias")
self.runCmd ("commands alias unalias commands unalias")
self.runCmd ("command alias alias command alias")
self.runCmd ("command alias unalias command unalias")
self.runCmd ("alias myrun process launch -t%1 --")
self.runCmd ("alias bp breakpoint")