tests: drop the .dispose() method from gpiosim-glib's chip class
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 1 Feb 2023 08:34:30 +0000 (09:34 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 1 Feb 2023 08:34:30 +0000 (09:34 +0100)
commit5bde6b3dafa21e12c04b4a99f1353def1761d1eb
tree3e4870f8955882b92fa684da10587f284c4c4015
parentcc8495f45579c31f2f95885a6dfb5287b93b8041
tests: drop the .dispose() method from gpiosim-glib's chip class

The .dispose() method should be used to drop references to any other
GObjects while .finalize() should free any remaining memory. While we are
dropping references in .dispose(), these are references to the libgpiosim
objects that are also guaranteed to always be at most equal 1. Move the
reference drops to .finalize() and remove .dispose() entirely.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
tests/gpiod-test-sim.c