[libcamera-devel] [PATCH v3 06/18] py: unittests: verify that cam and cm are freed
Tomi Valkeinen
tomi.valkeinen at ideasonboard.com
Wed May 18 15:13:17 CEST 2022
Add checks to CameraTesterBase to verify that both the Camera and the
CameraManager gets freed.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen at ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham at ideasonboard.com>
---
test/py/unittests.py | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/test/py/unittests.py b/test/py/unittests.py
index 9326358d..4c214f0a 100755
--- a/test/py/unittests.py
+++ b/test/py/unittests.py
@@ -83,6 +83,9 @@ class CameraTesterBase(BaseTestCase):
self.cm = None
raise Exception('Failed to acquire camera')
+ self.wr_cam = weakref.ref(self.cam)
+ self.wr_cm = weakref.ref(self.cm)
+
def tearDown(self):
# If a test fails, the camera may be in running state. So always stop.
self.cam.stop()
@@ -94,6 +97,9 @@ class CameraTesterBase(BaseTestCase):
self.cam = None
self.cm = None
+ self.assertIsNone(self.wr_cm())
+ self.assertIsNone(self.wr_cam())
+
class AllocatorTestMethods(CameraTesterBase):
def test_allocator(self):
--
2.34.1
More information about the libcamera-devel
mailing list