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>
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+"$@"}