diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-11-30 19:09:20 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-11-30 19:09:20 +0000 |
commit | d0cff1ea9b90e692c578c9964e065d67842ee5df (patch) | |
tree | 309b93c5c4f6d06391ab02ada15404eb0da87138 | |
parent | 9ce686e25f5404d5439545ace87dcf2811a64b33 (diff) | |
download | bcm5719-llvm-d0cff1ea9b90e692c578c9964e065d67842ee5df.tar.gz bcm5719-llvm-d0cff1ea9b90e692c578c9964e065d67842ee5df.zip |
I broke the test suite (4 failures) with r145459 check-in.
Fix the breakage by properly setting the result status before returning.
llvm-svn: 145507
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index 3e13af0fd29..e3a4f13667f 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -4013,6 +4013,7 @@ public: this_hook->GetDescription (&(result.GetOutputStream()), eDescriptionLevelFull); } } + result.SetStatus (eReturnStatusSuccessFinishResult); return result.Succeeded(); } }; |