From fa1f90ab602989155aafb57fd2cf774791800b06 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 3 Aug 2016 13:12:33 +1200 Subject: Add test to check binscripts match manpages --- test/man | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100755 test/man (limited to 'test/man') diff --git a/test/man b/test/man new file mode 100755 index 00000000..299fa60f --- /dev/null +++ b/test/man @@ -0,0 +1,45 @@ +#!/bin/sh +# Check that manual pages and logical binaries match up + +# Need some scripts from the source directory +PATH=bin:$PATH + +# Create temporary directory and implement cleanup function for it +td= +cleanup() { + rm -fr -- "$td" +} +for sig in EXIT HUP INT TERM ; do + trap cleanup "$sig" +done +td=$(mktd test-man) || exit + +# Get lists of logical binaries and manual pages +for dir in bin games ; do ( + cd -- "$dir" + pa * +) done | sort | sed 's/\...*$//' > "$td"/bin +for dir in man/man[168] ; do ( + cd -- "$dir" + pa *.[168] +) done | sort | sed 's/\.[168]$//' > "$td"/man + +# Get lists of noman scripts and nobin manual pages +comm -23 "$td"/bin "$td"/man > "$td"/noman +comm -13 "$td"/bin "$td"/man > "$td"/nobin + +# Emit the content of both, if any +ex=0 +if [ -s "$td"/noman ] ; then + printf >&2 '%s\n' 'No manual pages found for:' + cat >&2 -- "$td"/noman + ex=1 +fi +if [ -s "$td"/nobin ] ; then + printf >&2 '%s\n' 'Stray manual page for:' + cat >&2 -- "$td"/nobin + ex=1 +fi + +# Exit appropriately +exit "$ex" -- cgit v1.2.3