mirror of
https://github.com/tstack/lnav
synced 2024-11-17 15:29:40 +00:00
1fd274ce24
Also, add support for overstruck/backspace-underscore for doing bold/underline.
20 lines
400 B
Bash
20 lines
400 B
Bash
#! /bin/bash
|
|
|
|
export TZ="UTC"
|
|
export YES_COLOR=1
|
|
|
|
run_cap_test ${lnav_test} -n -c 'foo'
|
|
|
|
run_cap_test ${lnav_test} -d /tmp/lnav.err -t -n <<EOF
|
|
Hello, World!
|
|
Goodbye, World!
|
|
EOF
|
|
|
|
mkdir -p nested/sub1/sub2
|
|
echo "2021-07-03T21:49:29 Test" > nested/sub1/sub2/test.log
|
|
|
|
run_cap_test ${lnav_test} -nr nested
|
|
|
|
printf "a\ba _\ba a\b_" | run_cap_test env TEST_COMMENT="overstrike bold" \
|
|
${lnav_test} -n
|