diff options
Diffstat (limited to 'lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py')
-rw-r--r-- | lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py index bfbbc91e616..8f46670db28 100644 --- a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py +++ b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py @@ -26,12 +26,14 @@ class WatchpointConditionAPITestCase(TestBase): self.d = {'CXX_SOURCES': self.source, 'EXE': self.exe_name} @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") + @dsym_test def test_watchpoint_cond_api_with_dsym(self): """Test watchpoint condition API.""" self.buildDsym(dictionary=self.d) self.setTearDownCleanup(dictionary=self.d) self.watchpoint_condition_api() + @dwarf_test def test_watchpoint_cond_api_with_dwarf(self): """Test watchpoint condition API.""" self.buildDwarf(dictionary=self.d) |