diff options
Diffstat (limited to 'lldb/test/expression_command')
3 files changed, 3 insertions, 0 deletions
diff --git a/lldb/test/expression_command/call-function/TestCallStopAndContinue.py b/lldb/test/expression_command/call-function/TestCallStopAndContinue.py index 643ff082073..1c50e73e185 100644 --- a/lldb/test/expression_command/call-function/TestCallStopAndContinue.py +++ b/lldb/test/expression_command/call-function/TestCallStopAndContinue.py @@ -30,6 +30,7 @@ class ExprCommandCallStopContinueTestCase(TestBase): @dwarf_test @expectedFlakeyDarwin("llvm.org/pr20274") + @expectedFailureWindows("llvm.org/pr24489: Name lookup not working correctly on Windows") def test_with_dwarf(self): """Test gathering result from interrupted function call.""" self.buildDwarf() diff --git a/lldb/test/expression_command/call-function/TestCallUserDefinedFunction.py b/lldb/test/expression_command/call-function/TestCallUserDefinedFunction.py index 2aa404ee985..0c9f6f647b8 100644 --- a/lldb/test/expression_command/call-function/TestCallUserDefinedFunction.py +++ b/lldb/test/expression_command/call-function/TestCallUserDefinedFunction.py @@ -31,6 +31,7 @@ class ExprCommandCallUserDefinedFunction(TestBase): self.call_function() @dwarf_test + @expectedFailureWindows("llvm.org/pr24489: Name lookup not working correctly on Windows") @expectedFailureFreeBSD("llvm.org/pr20274") # intermittent failure def test_with_dwarf(self): """Test return values of user defined function calls.""" diff --git a/lldb/test/expression_command/test/TestExprs2.py b/lldb/test/expression_command/test/TestExprs2.py index 1fdb787898a..9395d31bac2 100644 --- a/lldb/test/expression_command/test/TestExprs2.py +++ b/lldb/test/expression_command/test/TestExprs2.py @@ -19,6 +19,7 @@ class ExprCommands2TestCase(TestBase): self.line = line_number('main.cpp', '// Please test many expressions while stopped at this line:') + @expectedFailureWindows("llvm.org/pr24489: Name lookup not working correctly on Windows") def test_more_expr_commands(self): """Test some more expression commands.""" self.buildDefault() |