lnav/test/test_tui.sh

29 lines
648 B
Bash
Raw Normal View History

2021-02-03 06:58:42 +01:00
#! /bin/bash
2021-02-03 07:12:06 +01:00
# Unsets the following so it does not show up in the term title
unset SSH_CONNECTION
2021-02-03 06:58:42 +01:00
lnav_test="${top_builddir}/src/lnav-test"
export lnav_test
2021-02-03 06:58:42 +01:00
2021-02-05 08:10:44 +01:00
for fn in ${srcdir}/tui-captures/*; do
2021-02-06 01:04:34 +01:00
base_fn=`basename $fn`
run_test ./scripty -n -e $fn -- ${lnav_test} -H < /dev/null
2021-02-03 06:58:42 +01:00
2021-02-06 01:04:34 +01:00
case "$base_fn" in
tui_echo.0)
on_error_log "Skipping $fn"
;;
*)
2021-03-20 05:35:53 +01:00
on_error_log "TUI test ${fn} does not work?"
2021-02-06 01:04:34 +01:00
;;
esac
2021-02-05 08:10:44 +01:00
done
2021-02-07 08:08:01 +01:00
run_test ./scripty -n -e ${srcdir}/xpath_tui.0 -- \
${lnav_test} -I ${test_dir} \
-c ':goto 2' \
${srcdir}/logfile_xml_msg.0
2021-03-20 05:35:53 +01:00
on_error_log "xpath() fields are not working?"