Fix misnamed test method names.

llvm-svn: 117101
This commit is contained in:
Johnny Chen 2010-10-22 16:17:39 +00:00
parent 1851090515
commit 962b799070
1 changed files with 2 additions and 2 deletions

View File

@ -13,12 +13,12 @@ class BreakpointConditionsTestCase(TestBase):
mydir = "breakpoint_conditions"
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_python(self):
def test_with_dsym_and_run_command(self):
"""Exercise breakpoint condition with 'breakpoint modify -c <expr> id'."""
self.buildDsym()
self.breakpoint_conditions()
def test_with_dwarf_python(self):
def test_with_dwarf_and_run_command(self):
"""Exercise breakpoint condition with 'breakpoint modify -c <expr> id'."""
self.buildDwarf()
self.breakpoint_conditions()