Skip to content

Commit 2f14fb3

Browse files
authored
The C++ dynamic typing tests are failing on Windows, skip for now. (llvm#171922)
This is a follow-on to: llvm#168611 which added a bunch of tests for detecting dynamic types of C++ result variables. I don't actually know how well dynamic type detection works on Windows if at all. It would require Windows support, since the Linux/Darwin version is specific to the Itanium ABI.
1 parent 43bfec2 commit 2f14fb3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lldb/test/API/functionalities/expr-result-var/TestCPPExprResult.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,11 @@ def check_dereference(self, result_varname, frame, expr_options):
9595
)
9696
self.assertEqual(method_result.signed, 500, "Got the right result value")
9797

98+
@skipIfWindows # Dynamic type resolution on Windows doesn't work
9899
def test_virtual_dynamic_results(self):
99100
self.do_test_dynamic_results(True)
100101

102+
@skipIfWindows # Dynamic type resolution on Windows doesn't work
101103
def test_non_virtual_dynamic_results(self):
102104
self.do_test_dynamic_results(False)
103105

0 commit comments

Comments
 (0)