diff options
author | Stella Stamenova <stilis@microsoft.com> | 2018-08-02 21:26:19 +0000 |
---|---|---|
committer | Stella Stamenova <stilis@microsoft.com> | 2018-08-02 21:26:19 +0000 |
commit | 0faca0f09f43369ab7132f884d4f54873f54a168 (patch) | |
tree | 3993dce2ef092d57e336991c8c8ffba0789c43a9 /lldb/packages/Python/lldbsuite/test/lang/cpp/virtual | |
parent | db3e54436ebdda3deb4efc297c1c9a0fd0a03222 (diff) | |
download | bcm5719-llvm-0faca0f09f43369ab7132f884d4f54873f54a168.tar.gz bcm5719-llvm-0faca0f09f43369ab7132f884d4f54873f54a168.zip |
[lldbsuite, windows] Mark tests as XFAIL on Windows or skip them
Summary:
1) Several tests that are flakey on windows fail the run even if they are marked as expected to be flakey. This is because they fail frequently enough that even a retry won't help
2) Skip several tests on Windows that will occasionally hang rather than failing or exiting. This is causing the entire test suite to hang
Reviewers: asmith, labath, zturner
Reviewed By: zturner
Differential Revision: https://reviews.llvm.org/D50198
llvm-svn: 338769
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/virtual')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py index b3fe9c40c19..365eb829ba6 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py @@ -36,6 +36,7 @@ class CppVirtualMadness(TestBase): @expectedFailureAll( compiler="icc", bugnumber="llvm.org/pr16808 lldb does not call the correct virtual function with icc.") + @skipIfWindows # This test will hang on windows llvm.org/pr21753 def test_virtual_madness(self): """Test that expression works correctly with virtual inheritance as well as virtual function.""" self.build() |