tools: tests: remove implicit run-time dependency on ncurses
authorKent Gibson <warthog618@gmail.com>
Mon, 12 Jun 2023 02:56:42 +0000 (10:56 +0800)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 12 Jun 2023 18:53:38 +0000 (20:53 +0200)
bats has an implicit depencency on ncurses, as I found when trying to
run the tests on a minimal install that lacked ncurses. Rather than make
the dependency explicit, force the output formatting to use the TAP
format which does not require ncurses.

Signed-off-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
tools/gpio-tools-test

index ed39ed5a549b07c241a160b5e6f26cf30bb1c720..441ec66636f06759dd3a76496e6731011797f39d 100755 (executable)
@@ -54,4 +54,4 @@ modprobe gpio-sim || die "unable to load the gpio-sim module"
 mountpoint /sys/kernel/config/ > /dev/null 2> /dev/null || \
        die "configfs not mounted at /sys/kernel/config/"
 
-exec $BATS_PATH $SOURCE_DIR/$BATS_SCRIPT ${1+"$@"}
+exec $BATS_PATH -F tap $SOURCE_DIR/$BATS_SCRIPT ${1+"$@"}