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/thread | |
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/thread')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py | 1 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/TestNumThreads.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py b/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py index 7194dafe0ac..3300078e8c6 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py @@ -17,6 +17,7 @@ class ThreadJumpTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr32343") def test(self): """Test thread jump handling.""" self.build(dictionary=self.getBuildFlags()) diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/TestNumThreads.py b/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/TestNumThreads.py index eff59ee52f7..663464346a2 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/TestNumThreads.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/TestNumThreads.py @@ -63,6 +63,7 @@ class NumberOfThreadsTestCase(TestBase): 'Number of expected threads and actual threads do not match.') @skipIfDarwin # rdar://33462362 + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr37658") def test_unique_stacks(self): """Test backtrace unique with multiple threads executing the same stack.""" self.build() |