summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/test/expression_command/call-function/TestCallStdStringFunction.py1
-rw-r--r--lldb/test/expression_command/char/TestExprsChar.py3
-rw-r--r--lldb/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py1
-rw-r--r--lldb/test/expression_command/timeout/TestCallWithTimeout.py1
-rw-r--r--lldb/test/lang/cpp/chained-calls/TestCppChainedCalls.py1
-rw-r--r--lldb/test/lang/cpp/global_operators/TestCppGlobalOperators.py1
6 files changed, 8 insertions, 0 deletions
diff --git a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py
index c36577a5413..d39b9437d6c 100644
--- a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py
+++ b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py
@@ -30,6 +30,7 @@ class ExprCommandCallFunctionTestCase(TestBase):
@expectedFailureFreeBSD('llvm.org/pr17807') # Fails on FreeBSD buildbot
@expectedFailureIcc # llvm.org/pr14437, fails with ICC 13.1
@expectedFailureDarwin(16361880) # <rdar://problem/16361880>, we get the result correctly, but fail to invoke the Summary formatter.
+ @expectedFailureWindows("llvm.org/pr21765")
def test_with_dwarf(self):
"""Test calling std::String member function."""
self.buildDwarf()
diff --git a/lldb/test/expression_command/char/TestExprsChar.py b/lldb/test/expression_command/char/TestExprsChar.py
index a3574bb9eb5..1f4a7a87591 100644
--- a/lldb/test/expression_command/char/TestExprsChar.py
+++ b/lldb/test/expression_command/char/TestExprsChar.py
@@ -49,16 +49,19 @@ class ExprCharTestCase(TestBase):
self.assertTrue(value.GetError().Success())
self.assertEqual(value.GetValueAsSigned(0), 3)
+ @expectedFailureWindows("llvm.org/pr21765")
def test_default_char(self):
self.do_test()
@expectedFailureArch("arm", "llvm.org/pr23069")
@expectedFailureArch("aarch64", "llvm.org/pr23069")
+ @expectedFailureWindows("llvm.org/pr21765")
def test_signed_char(self):
self.do_test(dictionary={'CFLAGS_EXTRAS': '-fsigned-char'})
@expectedFailurei386("llvm.org/pr23069")
@expectedFailurex86_64("llvm.org/pr23069")
+ @expectedFailureWindows("llvm.org/pr21765")
def test_unsigned_char(self):
self.do_test(dictionary={'CFLAGS_EXTRAS': '-funsigned-char'})
diff --git a/lldb/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py b/lldb/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py
index 5a93ef6447d..be9832c9563 100644
--- a/lldb/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py
+++ b/lldb/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py
@@ -18,6 +18,7 @@ class ExprSyscallTestCase(TestBase):
self.expr_syscall()
@dwarf_test
+ @expectedFailureWindows("llvm.org/pr21765") # Also getpid() is not a function on Windows anyway
def test_setpgid_with_dwarf(self):
self.buildDwarf()
self.expr_syscall()
diff --git a/lldb/test/expression_command/timeout/TestCallWithTimeout.py b/lldb/test/expression_command/timeout/TestCallWithTimeout.py
index 1ddb11a9053..32eba36b9f6 100644
--- a/lldb/test/expression_command/timeout/TestCallWithTimeout.py
+++ b/lldb/test/expression_command/timeout/TestCallWithTimeout.py
@@ -29,6 +29,7 @@ class ExprCommandWithTimeoutsTestCase(TestBase):
@expectedFailureFreeBSD("llvm.org/pr19605") # fails on buildbot
@expectedFlakeyLinux("llvm.org/pr20275")
+ @expectedFailureWindows("llvm.org/pr21765")
@dwarf_test
def test_with_dwarf(self):
"""Test calling std::String member function."""
diff --git a/lldb/test/lang/cpp/chained-calls/TestCppChainedCalls.py b/lldb/test/lang/cpp/chained-calls/TestCppChainedCalls.py
index 049717226c9..5a85c416128 100644
--- a/lldb/test/lang/cpp/chained-calls/TestCppChainedCalls.py
+++ b/lldb/test/lang/cpp/chained-calls/TestCppChainedCalls.py
@@ -13,6 +13,7 @@ class TestCppChainedCalls(TestBase):
self.check()
@dwarf_test
+ @expectedFailureWindows("llvm.org/pr21765")
def test_with_dwarf_and_run_command(self):
self.buildDwarf()
self.check()
diff --git a/lldb/test/lang/cpp/global_operators/TestCppGlobalOperators.py b/lldb/test/lang/cpp/global_operators/TestCppGlobalOperators.py
index 1145215158b..9ea49d6133e 100644
--- a/lldb/test/lang/cpp/global_operators/TestCppGlobalOperators.py
+++ b/lldb/test/lang/cpp/global_operators/TestCppGlobalOperators.py
@@ -16,6 +16,7 @@ class TestCppGlobalOperators(TestBase):
self.check()
@dwarf_test
+ @expectedFailureWindows("llvm.org/pr21765")
def test_with_dwarf_and_run_command(self):
self.buildDwarf()
self.check()
OpenPOWER on IntegriCloud