summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-05-16 18:30:00 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-05-16 18:30:00 +0000
commit29fd504c091431cb03ba68e7e1a9cca99bab0de7 (patch)
treebe8e8b29bcf9179903120b7a19b993d8712dd111
parent94c31fdd31d0534fc6a388cebe6280d6598f4627 (diff)
downloadbcm5719-llvm-29fd504c091431cb03ba68e7e1a9cca99bab0de7.tar.gz
bcm5719-llvm-29fd504c091431cb03ba68e7e1a9cca99bab0de7.zip
Renamed the test cases more properly to test_lldb_iter_module/breakpoint/farme.
llvm-svn: 131412
-rw-r--r--lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py b/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py
index 568048b0cdf..e71dcf9540b 100644
--- a/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py
+++ b/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py
@@ -19,22 +19,22 @@ class LLDBIteratorTestCase(TestBase):
self.line1 = line_number('main.cpp', '// Set break point at this line.')
self.line2 = line_number('main.cpp', '// And that line.')
- def test_lldb_iter_1(self):
+ def test_lldb_iter_module(self):
"""Test module_iter works correctly for SBTarget -> SBModule."""
self.buildDefault()
- self.lldb_iter_1()
+ self.lldb_iter_module()
- def test_lldb_iter_2(self):
+ def test_lldb_iter_breakpoint(self):
"""Test breakpoint_iter works correctly for SBTarget -> SBBreakpoint."""
self.buildDefault()
- self.lldb_iter_2()
+ self.lldb_iter_breakpoint()
- def test_lldb_iter_3(self):
+ def test_lldb_iter_frame(self):
"""Test iterator works correctly for SBProcess->SBThread->SBFrame."""
self.buildDefault()
- self.lldb_iter_3()
+ self.lldb_iter_frame()
- def lldb_iter_1(self):
+ def lldb_iter_module(self):
exe = os.path.join(os.getcwd(), "a.out")
target = self.dbg.CreateTarget(exe)
@@ -66,7 +66,7 @@ class LLDBIteratorTestCase(TestBase):
self.assertTrue(yours[i] == mine[i],
"UUID+FileSpec of yours[{0}] and mine[{0}] matches".format(i))
- def lldb_iter_2(self):
+ def lldb_iter_breakpoint(self):
exe = os.path.join(os.getcwd(), "a.out")
target = self.dbg.CreateTarget(exe)
@@ -95,7 +95,7 @@ class LLDBIteratorTestCase(TestBase):
self.assertTrue(yours[i] == mine[i],
"ID of yours[{0}] and mine[{0}] matches".format(i))
- def lldb_iter_3(self):
+ def lldb_iter_frame(self):
exe = os.path.join(os.getcwd(), "a.out")
target = self.dbg.CreateTarget(exe)
OpenPOWER on IntegriCloud