[Lldb-commits] [lldb] The C++ dynamic typing tests are failing on Windows, skip for now. (PR #171922)

via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 11 14:54:24 PST 2025


https://github.com/jimingham created https://github.com/llvm/llvm-project/pull/171922

This is a follow-on to:

https://github.com/llvm/llvm-project/pull/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.

>From f3d344d3c4a3e9ea5f4354019a289cfdd2b692ed Mon Sep 17 00:00:00 2001
From: Jim Ingham <jingham at apple.com>
Date: Thu, 11 Dec 2025 14:49:41 -0800
Subject: [PATCH] The C++ dynamic typing tests are failing on Windows, skip for
 now.

I don't actually know how well this works on Windows if at all.  It
would require Windows support, since the Linux/Darwin version is
specific to the Itanium ABI.
---
 .../API/functionalities/expr-result-var/TestCPPExprResult.py    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lldb/test/API/functionalities/expr-result-var/TestCPPExprResult.py b/lldb/test/API/functionalities/expr-result-var/TestCPPExprResult.py
index d560ce9059d15..cd6f1252de7f5 100644
--- a/lldb/test/API/functionalities/expr-result-var/TestCPPExprResult.py
+++ b/lldb/test/API/functionalities/expr-result-var/TestCPPExprResult.py
@@ -95,9 +95,11 @@ def check_dereference(self, result_varname, frame, expr_options):
         )
         self.assertEqual(method_result.signed, 500, "Got the right result value")
 
+    @skipIfWindows # Dynamic type resolution on Windows doesn't work
     def test_virtual_dynamic_results(self):
         self.do_test_dynamic_results(True)
 
+    @skipIfWindows # Dynamic type resolution on Windows doesn't work
     def test_non_virtual_dynamic_results(self):
         self.do_test_dynamic_results(False)
 



More information about the lldb-commits mailing list