[Lldb-commits] [lldb] 2bfe2b8 - [lldb][testsuite] Check that process is launched successfully in inline tests
Tatyana Krasnukha via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 26 05:07:25 PDT 2020
Author: Tatyana Krasnukha
Date: 2020-03-26T15:05:30+03:00
New Revision: 2bfe2b878a62db5b008735401d376f68dd0e34ea
URL: https://github.com/llvm/llvm-project/commit/2bfe2b878a62db5b008735401d376f68dd0e34ea
DIFF: https://github.com/llvm/llvm-project/commit/2bfe2b878a62db5b008735401d376f68dd0e34ea.diff
LOG: [lldb][testsuite] Check that process is launched successfully in inline tests
Added:
Modified:
lldb/packages/Python/lldbsuite/test/lldbinline.py
Removed:
################################################################################
diff --git a/lldb/packages/Python/lldbsuite/test/lldbinline.py b/lldb/packages/Python/lldbsuite/test/lldbinline.py
index 22668b673fda..3df26356d908 100644
--- a/lldb/packages/Python/lldbsuite/test/lldbinline.py
+++ b/lldb/packages/Python/lldbsuite/test/lldbinline.py
@@ -137,6 +137,8 @@ def do_test(self):
parser.set_breakpoints(target)
process = target.LaunchSimple(None, None, self.get_process_working_directory())
+ self.assertIsNotNone(process, PROCESS_IS_VALID)
+
hit_breakpoints = 0
while lldbutil.get_stopped_thread(process, lldb.eStopReasonBreakpoint):
More information about the lldb-commits
mailing list