[Lldb-commits] [lldb] r229380 - Rename MiStackTestCase tests according to "test_lldbmi_<command_name>" format

Ilia K ki.stfu at gmail.com
Mon Feb 16 05:00:59 PST 2015


Author: ki.stfu
Date: Mon Feb 16 07:00:59 2015
New Revision: 229380

URL: http://llvm.org/viewvc/llvm-project?rev=229380&view=rev
Log:
Rename MiStackTestCase tests according to "test_lldbmi_<command_name>" format


Modified:
    lldb/trunk/test/tools/lldb-mi/TestMiStack.py

Modified: lldb/trunk/test/tools/lldb-mi/TestMiStack.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/tools/lldb-mi/TestMiStack.py?rev=229380&r1=229379&r2=229380&view=diff
==============================================================================
--- lldb/trunk/test/tools/lldb-mi/TestMiStack.py (original)
+++ lldb/trunk/test/tools/lldb-mi/TestMiStack.py Mon Feb 16 07:00:59 2015
@@ -10,7 +10,7 @@ class MiStackTestCase(lldbmi_testcase.Mi
 
     @lldbmi_test
     @expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
-    def test_lldbmi_stackargs(self):
+    def test_lldbmi_stack_list_arguments(self):
         """Test that 'lldb-mi --interpreter' can shows arguments."""
 
         self.spawnLldbMi(args = None)
@@ -46,7 +46,7 @@ class MiStackTestCase(lldbmi_testcase.Mi
 
     @lldbmi_test
     @expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
-    def test_lldbmi_locals(self):
+    def test_lldbmi_stack_list_locals(self):
         """Test that 'lldb-mi --interpreter' can shows local variables."""
 
         self.spawnLldbMi(args = None)
@@ -164,7 +164,7 @@ class MiStackTestCase(lldbmi_testcase.Mi
 
     @lldbmi_test
     @expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
-    def test_lldbmi_stackdepth(self):
+    def test_lldbmi_stack_info_depth(self):
         """Test that 'lldb-mi --interpreter' can shows depth of the stack."""
 
         self.spawnLldbMi(args = None)
@@ -186,7 +186,7 @@ class MiStackTestCase(lldbmi_testcase.Mi
 
     @lldbmi_test
     @expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
-    def test_lldbmi_stackframes(self):
+    def test_lldbmi_stack_list_frames(self):
         """Test that 'lldb-mi --interpreter' can lists the frames on the stack."""
 
         self.spawnLldbMi(args = None)





More information about the lldb-commits mailing list