mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-25 14:45:12 +00:00
Compare commits
4 Commits
508cf237f2
...
f3ada134b4
Author | SHA1 | Date | |
---|---|---|---|
|
f3ada134b4 | ||
|
83b92ceb35 | ||
|
89771bbc05 | ||
|
f40ffc0262 |
@ -149,6 +149,7 @@ set(PYBIND11_TEST_FILES
|
||||
test_stl_binders
|
||||
test_tagbased_polymorphic
|
||||
test_thread
|
||||
test_type_caster_incomplete_type
|
||||
test_type_caster_pyobject_ptr
|
||||
test_type_caster_std_function_specializations
|
||||
test_union
|
||||
|
@ -312,8 +312,16 @@ void print_created(T *inst, Values &&...values) {
|
||||
}
|
||||
template <class T, typename... Values>
|
||||
void print_destroyed(T *inst, Values &&...values) { // Prints but doesn't store given values
|
||||
/*
|
||||
* On GraalPy, destructors can trigger anywhere and this can cause random
|
||||
* failures in unrelated tests.
|
||||
*/
|
||||
#if !defined(GRAALVM_PYTHON)
|
||||
print_constr_details(inst, "destroyed", values...);
|
||||
track_destroyed(inst);
|
||||
#else
|
||||
py::detail::silence_unused_warnings(inst, values...);
|
||||
#endif
|
||||
}
|
||||
template <class T, typename... Values>
|
||||
void print_values(T *inst, Values &&...values) {
|
||||
|
@ -6,14 +6,8 @@ from io import StringIO
|
||||
|
||||
import pytest
|
||||
|
||||
import env # noqa: F401
|
||||
from pybind11_tests import iostream as m
|
||||
|
||||
pytestmark = pytest.mark.skipif(
|
||||
"env.GRAALPY",
|
||||
reason="Delayed prints from finalizers from other tests can end up in the output",
|
||||
)
|
||||
|
||||
|
||||
def test_captured(capsys):
|
||||
msg = "I've been redirected to Python, I hope!"
|
||||
|
47
tests/test_type_caster_incomplete_type.cpp
Normal file
47
tests/test_type_caster_incomplete_type.cpp
Normal file
@ -0,0 +1,47 @@
|
||||
#include "pybind11_tests.h"
|
||||
|
||||
namespace test_type_caster_incomplete_type {
|
||||
|
||||
struct ForwardDeclaredType {};
|
||||
|
||||
} // namespace test_type_caster_incomplete_type
|
||||
|
||||
using ForwardDeclaredType = test_type_caster_incomplete_type::ForwardDeclaredType;
|
||||
|
||||
// TODO: Move to pybind11/type_caster_incomplete_type.h, wrap in a macro.
|
||||
namespace pybind11 {
|
||||
namespace detail {
|
||||
|
||||
template <>
|
||||
class type_caster<ForwardDeclaredType> {
|
||||
public:
|
||||
static constexpr auto name = const_name("object");
|
||||
|
||||
static handle
|
||||
cast(ForwardDeclaredType * /*src*/, return_value_policy /*policy*/, handle /*parent*/) {
|
||||
return py::none().release(); // TODO: Build and return capsule with src pointer;
|
||||
}
|
||||
|
||||
bool load(handle /*src*/, bool /*convert*/) {
|
||||
// TODO: Assign pointer_capsule = src after inspecting src.
|
||||
return true;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
using cast_op_type = ForwardDeclaredType *;
|
||||
|
||||
explicit operator ForwardDeclaredType *() {
|
||||
return nullptr; // TODO: Retrieve C++ pointer from pointer_capsule.
|
||||
}
|
||||
|
||||
private:
|
||||
capsule pointer_capsule;
|
||||
};
|
||||
|
||||
} // namespace detail
|
||||
} // namespace pybind11
|
||||
|
||||
TEST_SUBMODULE(type_caster_incomplete_type, m) {
|
||||
m.def("rtrn_fwd_decl_type_ptr", []() { return reinterpret_cast<ForwardDeclaredType *>(0); });
|
||||
m.def("pass_fwd_decl_type_ptr", [](ForwardDeclaredType *) {});
|
||||
}
|
11
tests/test_type_caster_incomplete_type.py
Normal file
11
tests/test_type_caster_incomplete_type.py
Normal file
@ -0,0 +1,11 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from pybind11_tests import type_caster_incomplete_type as m
|
||||
|
||||
|
||||
def test_rtrn_fwd_decl_type_ptr():
|
||||
assert m.rtrn_fwd_decl_type_ptr() is None
|
||||
|
||||
|
||||
def test_pass_fwd_decl_type_ptr():
|
||||
assert m.pass_fwd_decl_type_ptr(None) is None
|
Loading…
Reference in New Issue
Block a user