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/command_script/TestCommandScript.py | |
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/command_script/TestCommandScript.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/command_script/TestCommandScript.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/command_script/TestCommandScript.py b/lldb/packages/Python/lldbsuite/test/functionalities/command_script/TestCommandScript.py index e243b55f3b1..8ce6018646c 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/command_script/TestCommandScript.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/command_script/TestCommandScript.py @@ -8,6 +8,7 @@ from __future__ import print_function import os import time import lldb +from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * @@ -15,6 +16,7 @@ class CmdPythonTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr32343") def test(self): self.build() self.pycmd_tests() |