tests: don't segfault if gpio-sim is unavailable
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Thu, 20 Apr 2023 07:32:56 +0000 (09:32 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Thu, 20 Apr 2023 07:32:56 +0000 (09:32 +0200)
commit0fdc1a11c9cc05ea281d47235ecf9d5bee2ff505
tree034e418810afa576d204164b4244ecfd55b15337
parentb9f5d29950a41d2a3089e8e21838822b751f937f
tests: don't segfault if gpio-sim is unavailable

The GLib wrapper for libgpiosim tries to create the gpiosim context and
bank objects in the class's init() function but the constructed()
callback doesn't check if that operation succeeded, leading to a crash
when it dereferences the bank pointer.

As init() should only perform operations that cannot fail, let's move all
the gpiosim initialization code to constructed() and bail-out of it if
any of the steps fails.

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