diff options
Diffstat (limited to 'lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp')
-rw-r--r-- | lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp index 75391e2..1a8ad86 100644 --- a/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp +++ b/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp @@ -139,6 +139,14 @@ void *lldb_private::LLDBSWIGPython_CastPyObjectToSBData(PyObject *data) { return nullptr; } +void *lldb_private::LLDBSWIGPython_CastPyObjectToSBAttachInfo(PyObject *data) { + return nullptr; +} + +void *lldb_private::LLDBSWIGPython_CastPyObjectToSBLaunchInfo(PyObject *data) { + return nullptr; +} + void *lldb_private::LLDBSWIGPython_CastPyObjectToSBError(PyObject *data) { return nullptr; } @@ -268,3 +276,13 @@ bool lldb_private::LLDBSwigPythonStopHookCallHandleStop( python::PythonObject lldb_private::python::ToSWIGWrapper(const Status &status) { return python::PythonObject(); } + +python::PythonObject +lldb_private::python::ToSWIGWrapper(lldb::ProcessAttachInfoSP) { + return python::PythonObject(); +} + +python::PythonObject +lldb_private::python::ToSWIGWrapper(lldb::ProcessLaunchInfoSP) { + return python::PythonObject(); +} |