diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/completion/TestExprCompletion.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/completion/TestExprCompletion.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/completion/TestExprCompletion.py b/lldb/packages/Python/lldbsuite/test/expression_command/completion/TestExprCompletion.py index c33120c66b7..536b9e0abcd 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/completion/TestExprCompletion.py +++ b/lldb/packages/Python/lldbsuite/test/expression_command/completion/TestExprCompletion.py @@ -18,7 +18,6 @@ class CommandLineExprCompletionTestCase(TestBase): NO_DEBUG_INFO_TESTCASE = True - @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489") def test_expr_completion(self): self.build() self.main_source = "main.cpp" @@ -195,7 +194,6 @@ class CommandLineExprCompletionTestCase(TestBase): self.complete_exactly('expr some_expr.Self(). FooNoArgs', 'expr some_expr.Self(). FooNoArgsBar()') - @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489") def test_expr_completion_with_descriptions(self): self.build() self.main_source = "main.cpp" @@ -227,7 +225,6 @@ class CommandLineExprCompletionTestCase(TestBase): ["some_expr.MemberVariableBar", "int"], ]) - def assume_no_completions(self, str_input, cursor_pos = None): interp = self.dbg.GetCommandInterpreter() match_strings = lldb.SBStringList() |