summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectCommands.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-10-26 00:56:27 +0000
committerGreg Clayton <gclayton@apple.com>2011-10-26 00:56:27 +0000
commit86edbf41d1ad98b057f0e4e14bbd47eb3b6014f9 (patch)
treec96760fbcf505ef9bae19c631a55f56523790adb /lldb/source/Commands/CommandObjectCommands.cpp
parent2c25d9c0c56fc61be3cbd3cdd5aa0df804329b13 (diff)
downloadbcm5719-llvm-86edbf41d1ad98b057f0e4e14bbd47eb3b6014f9.tar.gz
bcm5719-llvm-86edbf41d1ad98b057f0e4e14bbd47eb3b6014f9.zip
Cleaned up many error codes. For any who is filling in error strings into
lldb_private::Error objects the rules are: - short strings that don't start with a capitol letter unless the name is a class or anything else that is always capitolized - no trailing newline character - should be one line if possible Implemented a first pass at adding "--gdb-format" support to anything that accepts format with optional size/count. llvm-svn: 142999
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectCommands.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp
index ba81f28ef2e..cb43f659220 100644
--- a/lldb/source/Commands/CommandObjectCommands.cpp
+++ b/lldb/source/Commands/CommandObjectCommands.cpp
@@ -62,7 +62,7 @@ private:
case 'c':
m_end_idx = Args::StringToUInt32(option_arg, UINT_MAX, 0, &success);
if (!success)
- error.SetErrorStringWithFormat("Invalid value for count: %s.\n", option_arg);
+ error.SetErrorStringWithFormat("invalid value for count: %s", option_arg);
if (m_end_idx != 0)
m_end_idx--;
m_start_idx = 0;
@@ -70,15 +70,15 @@ private:
case 'e':
m_end_idx = Args::StringToUInt32(option_arg, 0, 0, &success);
if (!success)
- error.SetErrorStringWithFormat("Invalid value for end index: %s.\n", option_arg);
+ error.SetErrorStringWithFormat("invalid value for end index: %s", option_arg);
break;
case 's':
m_start_idx = Args::StringToUInt32(option_arg, 0, 0, &success);
if (!success)
- error.SetErrorStringWithFormat("Invalid value for start index: %s.\n", option_arg);
+ error.SetErrorStringWithFormat("invalid value for start index: %s", option_arg);
break;
default:
- error.SetErrorStringWithFormat ("Unrecognized option '%c'.\n", short_option);
+ error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
break;
}
@@ -188,15 +188,15 @@ private:
case 'e':
m_stop_on_error = Args::StringToBoolean(option_arg, true, &success);
if (!success)
- error.SetErrorStringWithFormat("Invalid value for stop-on-error: %s.\n", option_arg);
+ error.SetErrorStringWithFormat("invalid value for stop-on-error: %s", option_arg);
break;
case 'c':
m_stop_on_continue = Args::StringToBoolean(option_arg, true, &success);
if (!success)
- error.SetErrorStringWithFormat("Invalid value for stop-on-continue: %s.\n", option_arg);
+ error.SetErrorStringWithFormat("invalid value for stop-on-continue: %s", option_arg);
break;
default:
- error.SetErrorStringWithFormat ("Unrecognized option '%c'.\n", short_option);
+ error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
break;
}
@@ -478,7 +478,7 @@ public:
if (!cmd_obj)
{
- result.AppendErrorWithFormat ("Invalid command given to 'alias'. '%s' does not begin with a valid command."
+ result.AppendErrorWithFormat ("invalid command given to 'alias'. '%s' does not begin with a valid command."
" No alias created.", raw_command_string.c_str());
result.SetStatus (eReturnStatusFailed);
return false;
@@ -1008,7 +1008,7 @@ private:
break;
default:
- error.SetErrorStringWithFormat ("Unrecognized option '%c'.\n", short_option);
+ error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
break;
}
@@ -1325,7 +1325,7 @@ private:
m_funct_name = std::string(option_arg);
break;
default:
- error.SetErrorStringWithFormat ("Unrecognized option '%c'.\n", short_option);
+ error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
break;
}
OpenPOWER on IntegriCloud