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/lang/cpp/exceptions/TestCPPExceptionBreakpoints.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/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py')
-rw-r--r-- | lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py b/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py index 3a896d44b5e..c7af66062eb 100644 --- a/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py +++ b/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py @@ -20,6 +20,7 @@ class CPPBreakpointTestCase(TestBase): self.cpp_exceptions() @dwarf_test + @expectedFailureWindows("llvm.org/pr24538") # clang-cl does not support throw or catch def test_with_dwarf(self): """Test lldb exception breakpoint command for CPP.""" self.buildDwarf() |