diff options
-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() |