diff options
author | Stella Stamenova <stilis@microsoft.com> | 2018-06-07 17:49:22 +0000 |
---|---|---|
committer | Stella Stamenova <stilis@microsoft.com> | 2018-06-07 17:49:22 +0000 |
commit | c3bc63e54b6da558c4132050a29967748233d578 (patch) | |
tree | 93a275b26f49d5472b606f6c05cb2b639dda749b /lldb/packages/Python/lldbsuite/test/functionalities/postmortem | |
parent | 12c0663a258e0628c4e777a79dd6e678d06fac47 (diff) | |
download | bcm5719-llvm-c3bc63e54b6da558c4132050a29967748233d578.tar.gz bcm5719-llvm-c3bc63e54b6da558c4132050a29967748233d578.zip |
[lit, windows] Disable a number of tests that are failing on Windows
Summary: They all correspond to bugs that are already logged and I've added the appropriate (or most appropriate) bug numbers. This leaves only a handful of failing tests.
Reviewers: asmith, zturner, labath
Reviewed By: zturner
Subscribers: eraman, llvm-commits
Differential Revision: https://reviews.llvm.org/D47892
llvm-svn: 334210
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/postmortem')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/TestMiniDump.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/TestMiniDump.py b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/TestMiniDump.py index 2cd4614e281..61e2adee41d 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/TestMiniDump.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/TestMiniDump.py @@ -100,6 +100,7 @@ class MiniDumpTestCase(TestBase): self.assertTrue(frame.GetModule().IsValid()) @skipUnlessWindows # Minidump saving works only on windows + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr32343") def test_deeper_stack_in_mini_dump(self): """Test that we can examine a more interesting stack in a mini dump.""" self.build() @@ -136,6 +137,7 @@ class MiniDumpTestCase(TestBase): os.unlink(core) @skipUnlessWindows # Minidump saving works only on windows + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr32343") def test_local_variables_in_mini_dump(self): """Test that we can examine local variables in a mini dump.""" self.build() |