diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-07-20 00:11:54 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-07-20 00:11:54 +0000 |
commit | cd1211ef81a05d6c4349bbbc0f1600874f2a4334 (patch) | |
tree | abc7e6df74b8151a3496c6437413c1248caf9b45 /lldb/test/python_api/event/TestEvents.py | |
parent | 2b5c61197f8afd5557a64018d13aae3e7089fcc3 (diff) | |
download | bcm5719-llvm-cd1211ef81a05d6c4349bbbc0f1600874f2a4334.tar.gz bcm5719-llvm-cd1211ef81a05d6c4349bbbc0f1600874f2a4334.zip |
Minor change; add an assertTrue stmt.
llvm-svn: 135542
Diffstat (limited to 'lldb/test/python_api/event/TestEvents.py')
-rw-r--r-- | lldb/test/python_api/event/TestEvents.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/python_api/event/TestEvents.py b/lldb/test/python_api/event/TestEvents.py index 20ac0af259d..c758d24289e 100644 --- a/lldb/test/python_api/event/TestEvents.py +++ b/lldb/test/python_api/event/TestEvents.py @@ -150,6 +150,7 @@ class EventAPITestCase(TestBase): # Now launch the process, and do not stop at entry point. error = lldb.SBError() process = target.Launch (listener, None, None, None, None, None, None, 0, False, error) + self.assertTrue(error.Success()) self.assertTrue(process, PROCESS_IS_VALID) # Get a handle on the process's broadcaster. |