commit | 6c7c390d60a24600328f251cad61b8fd8a60fefb | [log] [tgz] |
---|---|---|
author | Johnny Chen <johnny.chen@apple.com> | Wed Nov 30 19:09:20 2011 +0000 |
committer | Johnny Chen <johnny.chen@apple.com> | Wed Nov 30 19:09:20 2011 +0000 |
tree | d850201154102af8ae2459d4d0084d7ddead4a8e | |
parent | d2a1143a67661c65c6df4f4f1321ba4acdfe84c1 [diff] [blame] |
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(); } };