Change "breakpoint list" command to default to brief output rather than full output.

Modify test cases in test suite to either expect brief output or to pass -f for full
output as appropriate.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@124905 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectBreakpoint.cpp b/source/Commands/CommandObjectBreakpoint.cpp
index 35d8cfd..4dff142 100644
--- a/source/Commands/CommandObjectBreakpoint.cpp
+++ b/source/Commands/CommandObjectBreakpoint.cpp
@@ -641,7 +641,7 @@
 
 CommandObjectBreakpointList::CommandOptions::CommandOptions() :
     Options (),
-    m_level (lldb::eDescriptionLevelFull)  // Breakpoint List defaults to brief descriptions
+    m_level (lldb::eDescriptionLevelBrief)  // Breakpoint List defaults to brief descriptions
 {
 }
 
@@ -708,7 +708,7 @@
 {
     Options::ResetOptionValues();
 
-    m_level = lldb::eDescriptionLevelFull;
+    m_level = lldb::eDescriptionLevelBrief;
     m_internal = false;
 }