I broke the test suite (4 failures) with r145459 check-in.
Fix the breakage by properly setting the result status before returning.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@145507 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectTarget.cpp b/source/Commands/CommandObjectTarget.cpp
index 3e13af0..e3a4f13 100644
--- a/source/Commands/CommandObjectTarget.cpp
+++ b/source/Commands/CommandObjectTarget.cpp
@@ -4013,6 +4013,7 @@
                 this_hook->GetDescription (&(result.GetOutputStream()), eDescriptionLevelFull);
             }
         }
+        result.SetStatus (eReturnStatusSuccessFinishResult);
         return result.Succeeded();
     }
 };