aboutsummaryrefslogtreecommitdiff
path: root/test/man
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-03 13:12:33 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-03 13:12:33 +1200
commitfa1f90ab602989155aafb57fd2cf774791800b06 (patch)
tree4ebdad3eb8add37d961a778be50014bd81edb855 /test/man
parentCorrect lint/bin directory (diff)
downloaddotfiles-fa1f90ab602989155aafb57fd2cf774791800b06.tar.gz
dotfiles-fa1f90ab602989155aafb57fd2cf774791800b06.zip
Add test to check binscripts match manpages
Diffstat (limited to 'test/man')
-rwxr-xr-xtest/man45
1 files changed, 45 insertions, 0 deletions
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"