diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-10-22 16:17:39 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-10-22 16:17:39 +0000 |
commit | 962b799070c3c29c524064df3bdf4e6781f18c72 (patch) | |
tree | ed46d23a2eb7bde7a0eceb89310036069774e331 | |
parent | 1851090515a027eea6b7ae2d41eb9cd5fb409137 (diff) | |
download | bcm5719-llvm-962b799070c3c29c524064df3bdf4e6781f18c72.tar.gz bcm5719-llvm-962b799070c3c29c524064df3bdf4e6781f18c72.zip |
Fix misnamed test method names.
llvm-svn: 117101
-rw-r--r-- | lldb/test/breakpoint_conditions/TestBreakpointConditions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/breakpoint_conditions/TestBreakpointConditions.py b/lldb/test/breakpoint_conditions/TestBreakpointConditions.py index 4e2bc5b345e..d98e9ec72b4 100644 --- a/lldb/test/breakpoint_conditions/TestBreakpointConditions.py +++ b/lldb/test/breakpoint_conditions/TestBreakpointConditions.py @@ -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() |