[Lldb-commits] [lldb] r123683 - /lldb/trunk/test/abbreviation_tests/TestAbbreviations.py

Johnny Chen johnny.chen at apple.com
Mon Jan 17 14:35:39 PST 2011


Author: johnny
Date: Mon Jan 17 16:35:39 2011
New Revision: 123683

URL: http://llvm.org/viewvc/llvm-project?rev=123683&view=rev
Log:
Terminate the current process being debugged.
The test framework was relying on detecting either "run" or
"process launch" command to automatically kill the inferior.

Modified:
    lldb/trunk/test/abbreviation_tests/TestAbbreviations.py

Modified: lldb/trunk/test/abbreviation_tests/TestAbbreviations.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/abbreviation_tests/TestAbbreviations.py?rev=123683&r1=123682&r2=123683&view=diff
==============================================================================
--- lldb/trunk/test/abbreviation_tests/TestAbbreviations.py (original)
+++ lldb/trunk/test/abbreviation_tests/TestAbbreviations.py Mon Jan 17 16:35:39 2011
@@ -146,7 +146,10 @@
                                 '/usr/lib/libSystem.B.dylib',
                                 '/usr/lib/system/libmathCommon.A.dylib'])
 
-
+        # Terminate the current process being debugged.
+        # The test framework was relying on detecting either "run" or
+        # "process launch" command to automatically kill the inferior.
+        self.runCmd("process kill")
 
 
 if __name__ == '__main__':





More information about the lldb-commits mailing list