[Lldb-commits] [lldb] r135542 - /lldb/trunk/test/python_api/event/TestEvents.py

Johnny Chen johnny.chen at apple.com
Tue Jul 19 17:11:54 PDT 2011


Author: johnny
Date: Tue Jul 19 19:11:54 2011
New Revision: 135542

URL: http://llvm.org/viewvc/llvm-project?rev=135542&view=rev
Log:
Minor change; add an assertTrue stmt.

Modified:
    lldb/trunk/test/python_api/event/TestEvents.py

Modified: lldb/trunk/test/python_api/event/TestEvents.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/event/TestEvents.py?rev=135542&r1=135541&r2=135542&view=diff
==============================================================================
--- lldb/trunk/test/python_api/event/TestEvents.py (original)
+++ lldb/trunk/test/python_api/event/TestEvents.py Tue Jul 19 19:11:54 2011
@@ -150,6 +150,7 @@
         # 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.





More information about the lldb-commits mailing list