[Lldb-commits] [lldb] r131035 - in /lldb/trunk/test: lldbtest.py python_api/interpreter/ python_api/interpreter/Makefile python_api/interpreter/TestCommandInterpreterAPI.py python_api/interpreter/main.c

Johnny Chen johnny.chen at apple.com
Fri May 6 16:26:12 PDT 2011


Author: johnny
Date: Fri May  6 18:26:12 2011
New Revision: 131035

URL: http://llvm.org/viewvc/llvm-project?rev=131035&view=rev
Log:
Add an API test script file for SBCommandInterpreter.

Added:
    lldb/trunk/test/python_api/interpreter/
    lldb/trunk/test/python_api/interpreter/Makefile
    lldb/trunk/test/python_api/interpreter/TestCommandInterpreterAPI.py
    lldb/trunk/test/python_api/interpreter/main.c
Modified:
    lldb/trunk/test/lldbtest.py

Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=131035&r1=131034&r2=131035&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Fri May  6 18:26:12 2011
@@ -180,6 +180,8 @@
 
 VALID_BREAKPOINT_LOCATION = "Got a valid breakpoint location"
 
+VALID_COMMAND_INTERPRETER = "Got a valid command interpreter"
+
 VALID_FILESPEC = "Got a valid filespec"
 
 VALID_MODULE = "Got a valid module"

Added: lldb/trunk/test/python_api/interpreter/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/interpreter/Makefile?rev=131035&view=auto
==============================================================================
--- lldb/trunk/test/python_api/interpreter/Makefile (added)
+++ lldb/trunk/test/python_api/interpreter/Makefile Fri May  6 18:26:12 2011
@@ -0,0 +1,5 @@
+LEVEL = ../../make
+
+C_SOURCES := main.c
+
+include $(LEVEL)/Makefile.rules

Added: lldb/trunk/test/python_api/interpreter/TestCommandInterpreterAPI.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/interpreter/TestCommandInterpreterAPI.py?rev=131035&view=auto
==============================================================================
--- lldb/trunk/test/python_api/interpreter/TestCommandInterpreterAPI.py (added)
+++ lldb/trunk/test/python_api/interpreter/TestCommandInterpreterAPI.py Fri May  6 18:26:12 2011
@@ -0,0 +1,80 @@
+"""Test the SBCommandInterpreter APIs."""
+
+import os
+import unittest2
+import lldb
+import pexpect
+from lldbtest import *
+
+class CommandInterpreterAPICase(TestBase):
+
+    mydir = os.path.join("python_api", "interpreter")
+
+    @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
+    @python_api_test
+    def test_with_dsym_and_run_command(self):
+        """Test the SBCommandInterpreter APIs."""
+        self.buildDsym()
+        self.command_interpreter_api()
+
+    @python_api_test
+    def test_with_dwarf_and_process_launch_api(self):
+        """Test the SBCommandInterpreter APIs."""
+        self.buildDwarf()
+        self.command_interpreter_api()
+
+    def setUp(self):
+        # Call super's setUp().
+        TestBase.setUp(self)
+        # Find the line number to break on inside main.cpp.
+        self.line = line_number('main.c', 'Hello world.')
+
+    def command_interpreter_api(self):
+        """Test the SBCommandInterpreter APIs."""
+        exe = os.path.join(os.getcwd(), "a.out")
+
+        # Create a target by the debugger.
+        target = self.dbg.CreateTarget(exe)
+        self.assertTrue(target.IsValid(), VALID_TARGET)
+
+        # Retrieve the associated command interpreter from our debugger.
+        ci = self.dbg.GetCommandInterpreter()
+        self.assertTrue(ci.IsValid(), VALID_COMMAND_INTERPRETER)
+
+        # Exercise some APIs....
+
+        self.assertTrue(ci.HasCommands())
+        self.assertTrue(ci.HasAliases())
+        self.assertTrue(ci.HasAliasOptions())
+        self.assertTrue(ci.CommandExists("breakpoint"))
+        self.assertTrue(ci.CommandExists("target"))
+        self.assertTrue(ci.CommandExists("platform"))
+        self.assertTrue(ci.AliasExists("file"))
+        self.assertTrue(ci.AliasExists("run"))
+        self.assertTrue(ci.AliasExists("bt"))
+
+        res = lldb.SBCommandReturnObject()
+        ci.HandleCommand("breakpoint set -f main.c -l %d" % self.line, res)
+        self.assertTrue(res.Succeeded())
+        ci.HandleCommand("process launch", res)
+        self.assertTrue(res.Succeeded())
+
+        # Assigning to self.process so it gets cleaned up during test tear down.
+        self.process = ci.GetProcess()
+        self.assertTrue(self.process.IsValid())
+
+        import lldbutil
+        if self.process.GetState() != lldb.eStateStopped:
+            self.fail("Process should be in the 'stopped' state, "
+                      "instead the actual state is: '%s'" %
+                      lldbutil.state_type_to_str(self.process.GetState()))
+
+        if self.TraceOn():
+            lldbutil.print_stacktraces(self.process)        
+                        
+
+if __name__ == '__main__':
+    import atexit
+    lldb.SBDebugger.Initialize()
+    atexit.register(lambda: lldb.SBDebugger.Terminate())
+    unittest2.main()

Added: lldb/trunk/test/python_api/interpreter/main.c
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/interpreter/main.c?rev=131035&view=auto
==============================================================================
--- lldb/trunk/test/python_api/interpreter/main.c (added)
+++ lldb/trunk/test/python_api/interpreter/main.c Fri May  6 18:26:12 2011
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(int argc, char const *argv[]) {
+    printf("Hello world.\n");
+    return 0;
+}





More information about the lldb-commits mailing list