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.
46 lines
1.1 KiB
Python
Executable File
46 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
from __future__ import print_function
|
|
import sys
|
|
sys.path.append('.')
|
|
|
|
from example import Matrix
|
|
|
|
try:
|
|
import numpy as np
|
|
except ImportError:
|
|
# NumPy missing: skip test
|
|
exit(99)
|
|
|
|
m = Matrix(5, 5)
|
|
|
|
print(m[2, 3])
|
|
m[2, 3] = 4
|
|
print(m[2, 3])
|
|
|
|
m2 = np.array(m, copy=False)
|
|
print(m2)
|
|
print(m2[2, 3])
|
|
m2[2, 3] = 5
|
|
print(m[2, 3])
|
|
|
|
m3 = np.array([[1,2,3],[4,5,6]]).astype(np.float32)
|
|
print(m3)
|
|
m4 = Matrix(m3)
|
|
for i in range(m4.rows()):
|
|
for j in range(m4.cols()):
|
|
print(m4[i, j], end = ' ')
|
|
print()
|
|
|
|
from example import ConstructorStats
|
|
cstats = ConstructorStats.get(Matrix)
|
|
print("Instances not destroyed:", cstats.alive())
|
|
m = m4 = None
|
|
print("Instances not destroyed:", cstats.alive())
|
|
m2 = None # m2 holds an m reference
|
|
print("Instances not destroyed:", cstats.alive())
|
|
print("Constructor values:", cstats.values())
|
|
print("Copy constructions:", cstats.copy_constructions)
|
|
#print("Move constructions:", cstats.move_constructions >= 0) # Don't invoke any
|
|
print("Copy assignments:", cstats.copy_assignments)
|
|
print("Move assignments:", cstats.move_assignments)
|