diff options
| author | jimingham <jingham@apple.com> | 2025-12-11 15:14:01 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-11 15:14:01 -0800 |
| commit | 2f14fb3ddea94f1dd55ccc393fca644bcd6bc331 (patch) | |
| tree | 1d71cb917310021f9197d01de521baf6a6d3c177 /lldb/test/API/functionalities | |
| parent | 43bfec29cbecc1ff2e5aa6f8908c4d63e9c896c5 (diff) | |
| download | llvm-2f14fb3ddea94f1dd55ccc393fca644bcd6bc331.zip llvm-2f14fb3ddea94f1dd55ccc393fca644bcd6bc331.tar.gz llvm-2f14fb3ddea94f1dd55ccc393fca644bcd6bc331.tar.bz2 | |
The C++ dynamic typing tests are failing on Windows, skip for now. (#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.
Diffstat (limited to 'lldb/test/API/functionalities')
| -rw-r--r-- | lldb/test/API/functionalities/expr-result-var/TestCPPExprResult.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/API/functionalities/expr-result-var/TestCPPExprResult.py b/lldb/test/API/functionalities/expr-result-var/TestCPPExprResult.py index d560ce9..cd6f125 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 @@ class TestCPPResultVariables(TestBase): ) 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) |
