If info is NULL in one of the line-info test cases, we'll still try to
read its property leading to an abort() triggered from assert(info). Just
bail out of the test function if gpiod_chip_get_line_info() fails.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
chip = gpiod_test_open_chip_or_fail(g_gpiosim_chip_get_dev_path(sim));
- info = gpiod_chip_get_line_info(chip, 3);
- g_assert_nonnull(info);
+ info = gpiod_test_get_line_info_or_fail(chip, 3);
g_assert_cmpuint(gpiod_line_info_get_offset(info), ==, 3);
}