diff options
author | Stella Stamenova <stilis@microsoft.com> | 2018-10-18 15:30:31 +0000 |
---|---|---|
committer | Stella Stamenova <stilis@microsoft.com> | 2018-10-18 15:30:31 +0000 |
commit | c3439b099591bf86ec98c6bde0acf617a3d7b2b2 (patch) | |
tree | bb16bb60f124233669259e9d027975227ef40dbc /lldb/packages/Python/lldbsuite/test | |
parent | b0b5312e677ccbe568ffe4ea8247c4384d30b000 (diff) | |
download | bcm5719-llvm-c3439b099591bf86ec98c6bde0acf617a3d7b2b2.tar.gz bcm5719-llvm-c3439b099591bf86ec98c6bde0acf617a3d7b2b2.zip |
[lldbsuite] Mark the TestScriptedResolver tests as XFAIL on Windows
Summary: They fail similarly to some of the other breakpoint tests on Windows, so I suspect the cause is the same. I've linked to the same bug.
Reviewers: asmith, zturner, jingham
Subscribers: abidh, lldb-commits
Differential Revision: https://reviews.llvm.org/D53331
llvm-svn: 344744
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py index 62f756b5e65..0eb9033e754 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py @@ -10,6 +10,7 @@ import time import re import lldb import lldbsuite.test.lldbutil as lldbutil +from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * @@ -19,17 +20,20 @@ class TestScriptedResolver(TestBase): NO_DEBUG_INFO_TESTCASE = True + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24528") def test_scripted_resolver(self): """Use a scripted resolver to set a by symbol name breakpoint""" self.build() self.do_test() + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24528") def test_search_depths(self): """ Make sure we are called at the right depths depending on what we return from __get_depth__""" self.build() self.do_test_depths() + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24528") def test_command_line(self): """ Make sure we are called at the right depths depending on what we return from __get_depth__""" |