diff options
author | Zachary Turner <zturner@google.com> | 2015-08-13 20:49:43 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-08-13 20:49:43 +0000 |
commit | 3b8446712e20b78a9206f01b6b40ee2d9491c9e4 (patch) | |
tree | 97105b5a516b5f7c9b765d4f12912c64a19dc3fa /lldb/test/python_api | |
parent | 4a8d6b3b9e08263a19082b60b013163dc3d068c8 (diff) | |
download | bcm5719-llvm-3b8446712e20b78a9206f01b6b40ee2d9491c9e4.tar.gz bcm5719-llvm-3b8446712e20b78a9206f01b6b40ee2d9491c9e4.zip |
XFAIL Watchpoint tests on Windows.
https://llvm.org/pr24446 tracks getting these tests re-enabled.
llvm-svn: 244950
Diffstat (limited to 'lldb/test/python_api')
5 files changed, 10 insertions, 5 deletions
diff --git a/lldb/test/python_api/watchpoint/TestSetWatchpoint.py b/lldb/test/python_api/watchpoint/TestSetWatchpoint.py index 82c2aa94657..3c6a8117a8c 100644 --- a/lldb/test/python_api/watchpoint/TestSetWatchpoint.py +++ b/lldb/test/python_api/watchpoint/TestSetWatchpoint.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBValue API to create a watchpoint for read_write of 'globl' var. """ @@ -31,6 +31,7 @@ class SetWatchpointAPITestCase(TestBase): @python_api_test @dwarf_test @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_watch_val_with_dwarf(self): """Exercise SBValue.Watch() API to set a watchpoint.""" self.buildDwarf() diff --git a/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py b/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py index 1fc32ddcd1f..7cab93a4c7c 100644 --- a/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py +++ b/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBWatchpoint API to set the ignore count. """ @@ -31,6 +31,7 @@ class WatchpointIgnoreCountTestCase(TestBase): @python_api_test @dwarf_test @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_set_watch_ignore_count_with_dwarf(self): """Test SBWatchpoint.SetIgnoreCount() API.""" self.buildDwarf() diff --git a/lldb/test/python_api/watchpoint/TestWatchpointIter.py b/lldb/test/python_api/watchpoint/TestWatchpointIter.py index 1a39062b8ba..f44ffc4d386 100644 --- a/lldb/test/python_api/watchpoint/TestWatchpointIter.py +++ b/lldb/test/python_api/watchpoint/TestWatchpointIter.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBTarget API to iterate on the watchpoint(s) for the target. """ @@ -31,6 +31,7 @@ class WatchpointIteratorTestCase(TestBase): @python_api_test @dwarf_test @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_watch_iter_with_dwarf(self): """Exercise SBTarget.watchpoint_iter() API to iterate on the available watchpoints.""" self.buildDwarf() diff --git a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py index 64abb36eee1..6474b395b31 100644 --- a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py +++ b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py @@ -1,4 +1,4 @@ -""" +""" Test watchpoint condition API. """ @@ -35,6 +35,7 @@ class WatchpointConditionAPITestCase(TestBase): @dwarf_test @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_watchpoint_cond_api_with_dwarf(self): """Test watchpoint condition API.""" self.buildDwarf(dictionary=self.d) diff --git a/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py b/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py index c6583935737..5088506a221 100644 --- a/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py +++ b/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBValue.WatchPointee() API to create a watchpoint for write of '*g_char_ptr'. """ @@ -33,6 +33,7 @@ class SetWatchlocationAPITestCase(TestBase): @python_api_test @dwarf_test @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_watch_location_with_dwarf(self): """Exercise SBValue.WatchPointee() API to set a watchpoint.""" self.buildDwarf() |