mirror of
https://github.com/tstack/lnav
synced 2024-11-15 18:13:10 +00:00
37 lines
1.0 KiB
Bash
37 lines
1.0 KiB
Bash
#! /bin/sh
|
|
|
|
run_test ./scripty -- ./drive_listview < /dev/null
|
|
|
|
check_output "Listview doesn't match input?" < \
|
|
${srcdir}/listview_output.0
|
|
|
|
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
|