[Lldb-commits] [lldb] r145507 - /lldb/trunk/source/Commands/CommandObjectTarget.cpp
Johnny Chen
johnny.chen at apple.com
Wed Nov 30 11:09:20 PST 2011
Author: johnny
Date: Wed Nov 30 13:09:20 2011
New Revision: 145507
URL: http://llvm.org/viewvc/llvm-project?rev=145507&view=rev
Log:
I broke the test suite (4 failures) with r145459 check-in.
Fix the breakage by properly setting the result status before returning.
Modified:
lldb/trunk/source/Commands/CommandObjectTarget.cpp
Modified: lldb/trunk/source/Commands/CommandObjectTarget.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectTarget.cpp?rev=145507&r1=145506&r2=145507&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectTarget.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectTarget.cpp Wed Nov 30 13:09:20 2011
@@ -4013,6 +4013,7 @@
this_hook->GetDescription (&(result.GetOutputStream()), eDescriptionLevelFull);
}
}
+ result.SetStatus (eReturnStatusSuccessFinishResult);
return result.Succeeded();
}
};
More information about the lldb-commits
mailing list