mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
48 lines
771 B
Bash
48 lines
771 B
Bash
#! /bin/sh
|
|
|
|
cat > gp.dat <<EOF
|
|
Hello, World!
|
|
Goodbye, World?
|
|
EOF
|
|
|
|
grep_slice() {
|
|
./drive_grep_proc "$1" "$2" | slicer "$2"
|
|
}
|
|
|
|
grep_capture() {
|
|
./drive_grep_proc "$1" "$2" 1>/dev/null
|
|
}
|
|
|
|
run_test grep_slice 'Hello' gp.dat
|
|
|
|
check_output "grep_proc didn't find the right match?" <<EOF
|
|
Hello
|
|
EOF
|
|
|
|
run_test grep_slice '.*' gp.dat
|
|
|
|
check_output "grep_proc didn't find all lines?" < gp.dat
|
|
|
|
run_test grep_slice '\w+,' gp.dat
|
|
|
|
check_output "grep_proc didn't find the right matches?" <<EOF
|
|
Hello,
|
|
Goodbye,
|
|
EOF
|
|
|
|
run_test grep_slice '\w+.' gp.dat
|
|
|
|
check_output "grep_proc didn't find multiple matches?" <<EOF
|
|
Hello,
|
|
World!
|
|
Goodbye,
|
|
World?
|
|
EOF
|
|
|
|
run_test grep_capture '(\w+), World' gp.dat
|
|
|
|
check_output "grep_proc didn't capture matches?" <<EOF
|
|
0(0:5)Hello
|
|
1(0:7)Goodbye
|
|
EOF
|