diff options
| author | Zachary Turner <zturner@google.com> | 2015-08-21 22:11:09 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2015-08-21 22:11:09 +0000 |
| commit | 28ee0cd30e409f67d48ff2b2624af517958e5e7d (patch) | |
| tree | ced3a3a185ee0b99321b7869ccaaed848a686f06 /lldb/test/api/multithreaded/TestMultithreaded.py | |
| parent | 9ed57a9ef02ac556fd198cfcf1fb69d213a1a9bc (diff) | |
| download | bcm5719-llvm-28ee0cd30e409f67d48ff2b2624af517958e5e7d.tar.gz bcm5719-llvm-28ee0cd30e409f67d48ff2b2624af517958e5e7d.zip | |
XFAIL Tests that require C++ exceptions on Windows.
clang-cl does not yet support C++ exceptions, so these tests will
not even compile.
Re-enabling these tests is tracked by llvm.org/pr24538
llvm-svn: 245747
Diffstat (limited to 'lldb/test/api/multithreaded/TestMultithreaded.py')
| -rw-r--r-- | lldb/test/api/multithreaded/TestMultithreaded.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/api/multithreaded/TestMultithreaded.py b/lldb/test/api/multithreaded/TestMultithreaded.py index d5168ca93dd..b6929bf22e8 100644 --- a/lldb/test/api/multithreaded/TestMultithreaded.py +++ b/lldb/test/api/multithreaded/TestMultithreaded.py @@ -22,6 +22,7 @@ class SBBreakpointCallbackCase(TestBase): @skipIfRemote @skipIfNoSBHeaders @expectedFailureAll("llvm.org/pr23139", oslist=["linux"], compiler="gcc", compiler_version=[">=","4.9"], archs=["x86_64"]) + @expectedFailureWindows("llvm.org/pr24538") # clang-cl does not support throw or catch def test_breakpoint_callback(self): """Test the that SBBreakpoint callback is invoked when a breakpoint is hit. """ self.build_and_test('driver.cpp test_breakpoint_callback.cpp', @@ -30,6 +31,7 @@ class SBBreakpointCallbackCase(TestBase): @skipIfRemote @skipIfNoSBHeaders @expectedFailureAll("llvm.org/pr23139", oslist=["linux"], compiler="gcc", compiler_version=[">=","4.9"], archs=["x86_64"]) + @expectedFailureWindows("llvm.org/pr24538") # clang-cl does not support throw or catch def test_sb_api_listener_event_description(self): """ Test the description of an SBListener breakpoint event is valid.""" self.build_and_test('driver.cpp listener_test.cpp test_listener_event_description.cpp', @@ -40,6 +42,7 @@ class SBBreakpointCallbackCase(TestBase): @skipIfNoSBHeaders @expectedFlakeyLinux # Driver occasionally returns '1' as exit status @expectedFailureAll("llvm.org/pr23139", oslist=["linux"], compiler="gcc", compiler_version=[">=","4.9"], archs=["x86_64"]) + @expectedFailureWindows("llvm.org/pr24538") # clang-cl does not support throw or catch def test_sb_api_listener_event_process_state(self): """ Test that a registered SBListener receives events when a process changes state. @@ -52,6 +55,7 @@ class SBBreakpointCallbackCase(TestBase): @skipIfRemote @skipIfNoSBHeaders @expectedFailureAll("llvm.org/pr23139", oslist=["linux"], compiler="gcc", compiler_version=[">=","4.8"], archs=["x86_64"]) + @expectedFailureWindows("llvm.org/pr24538") # clang-cl does not support throw or catch def test_sb_api_listener_resume(self): """ Test that a process can be resumed from a non-main thread. """ self.build_and_test('driver.cpp listener_test.cpp test_listener_resume.cpp', |

