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/functionalities | |
| 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/functionalities')
8 files changed, 22 insertions, 8 deletions
diff --git a/lldb/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py b/lldb/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py index 598e71d89e8..3d34ca84c87 100644 --- a/lldb/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py +++ b/lldb/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py @@ -1,4 +1,4 @@ -""" +""" Test lldb watchpoint that uses '-s size' to watch a pointed location with size. """ @@ -24,6 +24,7 @@ class HelloWatchLocationTestCase(TestBase): @expectedFailureFreeBSD("llvm.org/pr18832") @dwarf_test @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_hello_watchlocation_with_dwarf(self): """Test watching a location with '-s size' option.""" self.buildDwarf(dictionary=self.d) diff --git a/lldb/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py b/lldb/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py index b818792ae55..16595a27c42 100644 --- a/lldb/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py +++ b/lldb/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py @@ -1,4 +1,4 @@ -""" +""" Test that lldb watchpoint works for multiple threads. """ @@ -23,6 +23,7 @@ class WatchpointForMultipleThreadsTestCase(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_multiple_threads_with_dwarf(self): """Test that lldb watchpoint works for multiple threads.""" self.buildDwarf() @@ -39,6 +40,7 @@ class WatchpointForMultipleThreadsTestCase(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_multiple_threads_wp_set_and_then_delete_with_dwarf(self): """Test that lldb watchpoint works for multiple threads, and after the watchpoint is deleted, the watchpoint event should no longer fires.""" self.buildDwarf() diff --git a/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py b/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py index cd8edf09cff..3d4ec50ab46 100644 --- a/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py +++ b/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py @@ -1,4 +1,4 @@ -""" +""" Test watchpoint list, enable, disable, and delete commands. """ @@ -36,6 +36,7 @@ class WatchpointCommandsTestCase(TestBase): @dwarf_test @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_rw_watchpoint_with_dwarf(self): """Test read_write watchpoint and expect to stop two times.""" self.buildDwarf(dictionary=self.d) @@ -52,6 +53,7 @@ class WatchpointCommandsTestCase(TestBase): @dwarf_test @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_rw_watchpoint_delete_with_dwarf(self): """Test delete watchpoint and expect not to stop for watchpoint.""" self.buildDwarf(dictionary=self.d) @@ -68,6 +70,7 @@ class WatchpointCommandsTestCase(TestBase): @dwarf_test @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_rw_watchpoint_set_ignore_count_with_dwarf(self): """Test watchpoint ignore count and expect to not to stop at all.""" self.buildDwarf(dictionary=self.d) @@ -84,6 +87,7 @@ class WatchpointCommandsTestCase(TestBase): @dwarf_test @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_rw_disable_after_first_stop__with_dwarf(self): """Test read_write watchpoint but disable it after the first stop.""" self.buildDwarf(dictionary=self.d) @@ -100,6 +104,7 @@ class WatchpointCommandsTestCase(TestBase): @dwarf_test @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_rw_disable_then_enable_with_dwarf(self): """Test read_write watchpoint, disable initially, then enable it.""" self.buildDwarf(dictionary=self.d) diff --git a/lldb/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandLLDB.py b/lldb/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandLLDB.py index d2ba2ae6056..cf1df78f255 100644 --- a/lldb/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandLLDB.py +++ b/lldb/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandLLDB.py @@ -1,4 +1,4 @@ -""" +""" Test 'watchpoint command'. """ @@ -35,6 +35,7 @@ class WatchpointLLDBCommandTestCase(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_command_with_dwarf(self): """Test 'watchpoint command'.""" self.buildDwarf(dictionary=self.d) @@ -51,6 +52,7 @@ class WatchpointLLDBCommandTestCase(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_command_can_disable_a_watchpoint_with_dwarf(self): """Test that 'watchpoint command' action can disable a watchpoint after it is triggered.""" self.buildDwarf(dictionary=self.d) diff --git a/lldb/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandPython.py b/lldb/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandPython.py index f566fa161e7..98da3b97bea 100644 --- a/lldb/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandPython.py +++ b/lldb/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandPython.py @@ -1,4 +1,4 @@ -""" +""" Test 'watchpoint command'. """ @@ -35,6 +35,7 @@ class WatchpointPythonCommandTestCase(TestBase): @dwarf_test @skipIfFreeBSD # timing out on buildbot + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported def test_watchpoint_command_with_dwarf(self): """Test 'watchpoint command'.""" diff --git a/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py b/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py index 25080cdcd4b..929e66a3b21 100644 --- a/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py +++ b/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py @@ -1,4 +1,4 @@ -""" +""" Test watchpoint modify command to set condition on a watchpoint. """ @@ -35,6 +35,7 @@ class WatchpointConditionCmdTestCase(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_with_dwarf(self): """Test watchpoint condition.""" self.buildDwarf(dictionary=self.d) diff --git a/lldb/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py b/lldb/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py index c072d8d7b32..77128ef0ad1 100644 --- a/lldb/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py +++ b/lldb/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py @@ -1,4 +1,4 @@ -"""Test that adding, deleting and modifying watchpoints sends the appropriate events.""" +"""Test that adding, deleting and modifying watchpoints sends the appropriate events.""" import os, time import unittest2 @@ -21,6 +21,7 @@ class TestWatchpointEvents (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_with_dwarf_and_python_api(self): """Test that adding, deleting and modifying watchpoints sends the appropriate events.""" self.buildDwarf() diff --git a/lldb/test/functionalities/watchpoint/watchpoint_set_command/TestWatchLocationWithWatchSet.py b/lldb/test/functionalities/watchpoint/watchpoint_set_command/TestWatchLocationWithWatchSet.py index d2221de4b63..3c0449aec3e 100644 --- a/lldb/test/functionalities/watchpoint/watchpoint_set_command/TestWatchLocationWithWatchSet.py +++ b/lldb/test/functionalities/watchpoint/watchpoint_set_command/TestWatchLocationWithWatchSet.py @@ -1,4 +1,4 @@ -""" +""" Test lldb watchpoint that uses 'watchpoint set -w write -s size' to watch a pointed location with size. """ @@ -23,6 +23,7 @@ class WatchLocationUsingWatchpointSetTestCase(TestBase): @dwarf_test @expectedFailureFreeBSD('llvm.org/pr18832') @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows def test_watchlocation_with_dwarf_using_watchpoint_set(self): """Test watching a location with 'watchpoint set expression -w write -s size' option.""" self.buildDwarf() |

