[Lldb-commits] [lldb] [lldb][swig] Support SBFileSpec::GetPath (PR #162964)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 10 20:52:22 PDT 2025
https://github.com/kusmour updated https://github.com/llvm/llvm-project/pull/162964
>From 40e90565e7c583c4394f01bcbde76b1c163a0301 Mon Sep 17 00:00:00 2001
From: Wanyi Ye <wanyi at meta.com>
Date: Fri, 10 Oct 2025 19:13:55 -0700
Subject: [PATCH] [lldb][swig] Support SBFileSpec::GetPath
---
lldb/bindings/python/python-typemaps.swig | 5 +++++
lldb/test/API/python_api/default-constructor/sb_filespec.py | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/lldb/bindings/python/python-typemaps.swig b/lldb/bindings/python/python-typemaps.swig
index 88b6cd9ef6b6e..715914fe745f8 100644
--- a/lldb/bindings/python/python-typemaps.swig
+++ b/lldb/bindings/python/python-typemaps.swig
@@ -233,6 +233,11 @@ AND call SWIG_fail at the same time, because it will result in a double free.
}
+// For lldb::SBFileSpec::GetPath
+%typemap(in) (char *dst_path, size_t dst_len) = (char *dst_or_null, size_t dst_len);
+%typemap(argout) (char *dst_path, size_t dst_len) = (char *dst_or_null, size_t dst_len);
+
+
// typemap for an outgoing buffer
// See also SBEvent::SBEvent(uint32_t event, const char *cstr, uint32_t cstr_len).
// Ditto for SBProcess::PutSTDIN(const char *src, size_t src_len).
diff --git a/lldb/test/API/python_api/default-constructor/sb_filespec.py b/lldb/test/API/python_api/default-constructor/sb_filespec.py
index 4ab5c49c37eb5..b00ee505c45be 100644
--- a/lldb/test/API/python_api/default-constructor/sb_filespec.py
+++ b/lldb/test/API/python_api/default-constructor/sb_filespec.py
@@ -10,5 +10,5 @@ def fuzz_obj(obj):
obj.ResolveExecutableLocation()
obj.GetFilename()
obj.GetDirectory()
- obj.GetPath(None, 0)
+ obj.GetPath(0)
obj.GetDescription(lldb.SBStream())
More information about the lldb-commits
mailing list