(root)/
man-db-2.12.0/
src/
tests/
lexgrog-basic
#! /bin/sh

# Basic lexgrog tests.

: "${srcdir=.}"
# shellcheck source-path=SCRIPTDIR
. "$srcdir/testlib.sh"

: "${LEXGROG=lexgrog}"

init

write_page lextest 1 "$tmpdir/usr/share/man/man1/lextest.1.gz" UTF-8 gz '' \
	'lextest \- simple lexgrog test'
echo "$tmpdir/usr/share/man/man1/lextest.1.gz: \"lextest - simple lexgrog test\"" >"$tmpdir/1.exp"
run $LEXGROG "$tmpdir/usr/share/man/man1/lextest.1.gz" >"$tmpdir/1.out"
expect_files_equal 'simple lexgrog test' "$tmpdir/1.exp" "$tmpdir/1.out"

finish