aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/OptionGroupOutputFile.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2014-07-09 16:31:49 +0000
committerZachary Turner <zturner@google.com>2014-07-09 16:31:49 +0000
commitd37221dc5d819d63dbe35ab9a2d60e73cbd52dbd (patch)
tree6339714ffc3c7c219f05ea19006d3da691a87753 /lldb/source/Interpreter/OptionGroupOutputFile.cpp
parentc5626f4444490d2e7a5f2cf950bf2f469c9de3f3 (diff)
downloadllvm-d37221dc5d819d63dbe35ab9a2d60e73cbd52dbd.zip
llvm-d37221dc5d819d63dbe35ab9a2d60e73cbd52dbd.tar.gz
llvm-d37221dc5d819d63dbe35ab9a2d60e73cbd52dbd.tar.bz2
Revert "Fix broken tests due to new error output."
This reverts commit ec7c94f8e6860968d384b578e5564a9c55c80b4a and re-enables OptionValidators. llvm-svn: 212627
Diffstat (limited to 'lldb/source/Interpreter/OptionGroupOutputFile.cpp')
-rw-r--r--lldb/source/Interpreter/OptionGroupOutputFile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/OptionGroupOutputFile.cpp b/lldb/source/Interpreter/OptionGroupOutputFile.cpp
index f3ffb8a..ec9e166 100644
--- a/lldb/source/Interpreter/OptionGroupOutputFile.cpp
+++ b/lldb/source/Interpreter/OptionGroupOutputFile.cpp
@@ -33,9 +33,9 @@ static const uint32_t SHORT_OPTION_APND = 0x61706e64; // 'apnd'
static OptionDefinition
g_option_table[] =
{
- { LLDB_OPT_SET_1 , false, "outfile", 'o', OptionParser::eRequiredArgument, nullptr, 0, eArgTypeFilename , "Specify a path for capturing command output."},
+ { LLDB_OPT_SET_1 , false, "outfile", 'o', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeFilename , "Specify a path for capturing command output."},
{ LLDB_OPT_SET_1 , false, "append-outfile" , SHORT_OPTION_APND,
- OptionParser::eNoArgument, nullptr, 0, eArgTypeNone ,
+ OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone ,
"Append to the the file specified with '--outfile <path>'."},
};