diff options
author | Zachary Turner <zturner@google.com> | 2015-09-16 18:08:33 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-09-16 18:08:33 +0000 |
commit | 4a58dd3035ba3a4fa7907a98c89808e91e5df8ee (patch) | |
tree | 5f1f94818052b5bf398ebea7bd77b2c160721255 /lldb/test/python_api | |
parent | 8c8fe5a0159041e176e3331e7fc0d3031ebefe16 (diff) | |
download | bcm5719-llvm-4a58dd3035ba3a4fa7907a98c89808e91e5df8ee.tar.gz bcm5719-llvm-4a58dd3035ba3a4fa7907a98c89808e91e5df8ee.zip |
Last set of XFAILs for Windows.
llvm-svn: 247825
Diffstat (limited to 'lldb/test/python_api')
-rw-r--r-- | lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py | 1 | ||||
-rw-r--r-- | lldb/test/python_api/signals/TestSignalsAPI.py | 1 | ||||
-rw-r--r-- | lldb/test/python_api/thread/TestThreadAPI.py | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py b/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py index e66f35ed87b..4dc5dbe7aa6 100644 --- a/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py +++ b/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py @@ -19,6 +19,7 @@ class RegistersIteratorTestCase(TestBase): self.line1 = line_number('main.cpp', '// Set break point at this line.') @python_api_test + @expectedFailureWindows # Test crashes def test_iter_registers(self): """Test iterator works correctly for lldbutil.iter_registers().""" self.buildDefault() diff --git a/lldb/test/python_api/signals/TestSignalsAPI.py b/lldb/test/python_api/signals/TestSignalsAPI.py index 8d05d3771fd..7474f431344 100644 --- a/lldb/test/python_api/signals/TestSignalsAPI.py +++ b/lldb/test/python_api/signals/TestSignalsAPI.py @@ -13,6 +13,7 @@ class SignalsAPITestCase(TestBase): @python_api_test @expectedFlakeyLinux # this test fails 1/100 dosep runs + @skipIfWindows # Windows doesn't have signals def test_ignore_signal(self): """Test Python SBUnixSignals.Suppress/Stop/Notify() API.""" self.buildDefault() diff --git a/lldb/test/python_api/thread/TestThreadAPI.py b/lldb/test/python_api/thread/TestThreadAPI.py index 706919e69ab..d5b146d07ab 100644 --- a/lldb/test/python_api/thread/TestThreadAPI.py +++ b/lldb/test/python_api/thread/TestThreadAPI.py @@ -76,6 +76,7 @@ class ThreadAPITestCase(TestBase): @expectedFailureFreeBSD # llvm.org/pr20476 @python_api_test + @expectedFailureWindows # Test crashes @dwarf_test def test_step_out_of_malloc_into_function_b_with_dwarf(self): """Test Python SBThread.StepOut() API to step out of a malloc call where the call site is at function b().""" |