1
1
mirror of https://github.com/tstack/lnav.git synced 2024-09-11 13:05:51 +03:00
lnav/test/test_listview.sh

37 lines
1.0 KiB
Bash
Raw Normal View History

2009-09-14 05:07:32 +04:00
#! /bin/sh
2009-10-14 23:42:58 +04:00
run_test ./scripty -n -e ${srcdir}/listview_output.0 -- \
./drive_listview < /dev/null
2009-09-14 05:07:32 +04:00
2009-10-14 23:42:58 +04:00
on_error_fail_with "listview output does not match?"
2009-09-14 05:07:32 +04:00
run_test ./scripty -- ./drive_listview -t 1 < /dev/null
check_output "Listview didn't move down?" < \
${srcdir}/listview_output.1
run_test ./scripty -- ./drive_listview -l 1 < /dev/null
check_output "Listview didn't move right?" < \
${srcdir}/listview_output.2
run_test ./scripty -- ./drive_listview -t 1 -l 1 < /dev/null
check_output "Listview didn't move left and right?" < \
${srcdir}/listview_output.3
run_test ./scripty -- ./drive_listview -y 1 -r 50 < /dev/null
check_output "Listview doesn't start down one line?" < \
${srcdir}/listview_output.4
run_test ./scripty -- ./drive_listview -y 1 -r 50 -h -1 < /dev/null
check_output "Listview isn't shorter?" < \
${srcdir}/listview_output.5
run_test ./scripty -- ./drive_listview -y 1 -r 50 -h -1 -t 1 < /dev/null
check_output "Listview didn't move down (2)?" < \
${srcdir}/listview_output.6