X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/a75b45f604c4e48b0f39be25ce59cd1955e5f9a4..213e031dda6a34c50c04de0d6041f45ab2db0a91:/test/manpages/test-manpages?ds=sidebyside diff --git a/test/manpages/test-manpages b/test/manpages/test-manpages index 570ff335..6b2ee95a 100755 --- a/test/manpages/test-manpages +++ b/test/manpages/test-manpages @@ -19,7 +19,7 @@ require_prog groff cd ${MH_INST_DIR}${mandir} || exit 1 -# groff will still exit with status zero even if warnings +# groff will exit with zero status even if warnings # were emitted, so we have to jump through hoops to # find out if any were emitted. @@ -31,20 +31,26 @@ actual=$MH_TEST_DIR/$$.actual rm -f "$expected" "$actual" touch "$expected" "$actual" + +warnings="-ww" + #### If the prefix is too long, groff will report that it can't break #### the `aliasfiles' line in ali.1. length=`echo $prefix | awk '{print length($0)}'` -[ $length -gt 35 ] && suppress_break_warning=-Wbreak +[ $length -gt 32 ] && warnings="${warnings} -Wbreak" + +#### OpenBSD's mandoc spits out a lot of "unbalance .el request" warnings; +#### -Wel suppresses them. +groff -Tutf8 -mandoc -ww man1/ali.1 >/dev/null 2>>"$actual" +if grep warning "$actual" >/dev/null; then + warnings="$warnings -Wel" +fi +rm -f "$actual" +touch "$actual" -#### OpenBSD's mandoc spits out a lot of warnings. -case `uname -s` in - OpenBSD) macpac=-man ;; - *) macpac=-mandoc ;; -esac -warnings="-ww $suppress_break_warning" for manpage in man?/*.?; do - groff -Tutf8 $macpac $warnings "$manpage" >/dev/null 2>>"$actual" + groff -Tutf8 -mandoc $warnings "$manpage" >/dev/null 2>>"$actual" done check "$expected" "$actual"