mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 16:13:53 +00:00
3f589379ec
This commit rewrites the examples that look for constructor/destructor calls to do so via static variable tracking rather than output parsing. The added ConstructorStats class provides methods to keep track of constructors and destructors, number of default/copy/move constructors, and number of copy/move assignments. It also provides a mechanism for storing values (e.g. for value construction), and then allows all of this to be checked at the end of a test by getting the statistics for a C++ (or python mapping) class. By not relying on the precise pattern of constructions/destructions, but rather simply ensuring that every construction is matched with a destruction on the same object, we ensure that everything that gets created also gets destroyed as expected. This replaces all of the various "std::cout << whatever" code in constructors/destructors with `print_created(this)`/`print_destroyed(this)`/etc. functions which provide similar output, but now has a unified format across the different examples, including a new ### prefix that makes mixed example output and lifecycle events easier to distinguish. With this change, relaxed mode is no longer needed, which enables testing for proper destruction under MSVC, and under any other compiler that generates code calling extra constructors, or optimizes away any constructors. GCC/clang are used as the baseline for move constructors; the tests are adapted to allow more move constructors to be evoked (but other types are constructors much have matching counts). This commit also disables output buffering of tests, as the buffering sometimes results in C++ output ending up in the middle of python output (or vice versa), depending on the OS/python version.
53 lines
1.2 KiB
Python
53 lines
1.2 KiB
Python
from __future__ import print_function
|
|
import sys
|
|
|
|
sys.path.append('.')
|
|
|
|
from example import StringList, print_opaque_list
|
|
from example import ClassWithSTLVecProperty
|
|
from example import return_void_ptr, print_void_ptr
|
|
from example import return_null_str, print_null_str
|
|
from example import return_unique_ptr
|
|
from example import ExampleMandA
|
|
|
|
#####
|
|
|
|
l = StringList()
|
|
l.push_back("Element 1")
|
|
l.push_back("Element 2")
|
|
print_opaque_list(l)
|
|
print("Back element is %s" % l.back())
|
|
for i, k in enumerate(l):
|
|
print("%i/%i : %s" % (i + 1, len(l), k))
|
|
l.pop_back()
|
|
print_opaque_list(l)
|
|
|
|
#####
|
|
cvp = ClassWithSTLVecProperty()
|
|
print_opaque_list(cvp.stringList)
|
|
|
|
cvp.stringList = l
|
|
cvp.stringList.push_back("Element 3")
|
|
print_opaque_list(cvp.stringList)
|
|
|
|
#####
|
|
|
|
print_void_ptr(return_void_ptr())
|
|
print_void_ptr(ExampleMandA()) # Should also work for other C++ types
|
|
from example import ConstructorStats
|
|
print("ExampleMandA still alive:", ConstructorStats.get(ExampleMandA).alive())
|
|
|
|
try:
|
|
print_void_ptr([1, 2, 3]) # This should not work
|
|
except Exception as e:
|
|
print("Caught expected exception: " + str(e))
|
|
|
|
print(return_null_str())
|
|
print_null_str(return_null_str())
|
|
|
|
#####
|
|
|
|
ptr = return_unique_ptr()
|
|
print(ptr)
|
|
print_opaque_list(ptr)
|